Arthur O'Dwyer
Arthur O'Dwyer
Confirmed — `-bigobj` fixes the linker error. AFAIC, it's safe to merge this PR if you want it (except that I suppose it's still pending confirmation from @Danfun64 about the...
Rebased.
TravisCI supports Windows now! But I haven't figured out how to build HyperRogue on it yet. https://blog.travis-ci.com/2018-10-11-windows-early-release https://docs.travis-ci.com/user/reference/windows
Ah, the simple `offsetof` is foiled by GCC, okay. I've got a better idea anyway. This PR is now based on top of #233, so please look at that one...
> With these changes, I get a crash on startup in `hr::geometry_information::generate_floorshapes`: Oh, crap. I don't get the crash myself (Clang trunk, OSX), but I agree, I see where it...
https://twitter.com/thepracticaldev/status/716390583217029124 suggests that adding `-Wno-psabi` will silence all the "parameter passing for ... will change in GCC 7.1" warnings. (This became the default in GCC later on.) The filename `savepng-loc.o`...
It seems like Travis isn't happy yet: https://travis-ci.org/github/zenorogue/hyperrogue/jobs/689351528 ``` $ # Install GLEW if asked for if [[ "$HYPERROGUE_USE_GLEW" == "1" ]]; then if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then...
In case I was too oblique with my reference to https://github.com/msys2/MSYS2-packages/issues/1962#issuecomment-630258878 , I think the really important comment is this one: > Sorry for the inconvenience :/ There is some...
Could the current failure https://travis-ci.org/github/zenorogue/hyperrogue/jobs/690404626 be due simply to writing `./hyperrogue` instead of `.\hyperrogue.exe`, or some minor thing like that? It's weird that Travis doesn't give any information except "exited...
On my OSX laptop, `pkg-config --cflags sdl SDL_mixer` works; and `pkg-config --cflags SDL sdl_mixer` also works; and `pkg-config --cflags SDL-mixer` does not work. But then, OSX's filesystem is case-insensitive by...