Hi folks, not sure if this is helpful or not but GlyphGryph seemed to think it was so here goes.
I was able to build (ascii curses mode) of the game just fine on OS X. Am I understanding correctly that that is a noteworthy achievement? If so, I can confirm I was able to do it with no particular trouble. Will help if I can.
I think I read you guys were trying to cross compile for OS X from linux which is a different animal and I haven’t tried that before.
In case it helps though, on OS X I basically just followed the directions in COMPILING_osx.md which boiled down to
- make sure curses and gettext were installed (had curses by default, installed gettext using homebrew)
- build, as per the COMPILING_osx.md instructions. I simplified slightly and did:
$ export CXXFLAGS="-I/usr/local/opt/gettext/include"
$ export LDFLAGS="-L/usr/local/opt/gettext/lib"
$ make NATIVE=osx
This was against the master branch. Built it again just now to double check. Took 6 minutes. Don’t even see any compile warnings. Starts and runs fine. I’ve played a couple minutes from that build without issues.