Peter0x44
Peter0x44
You can use (and are actually supposed to) use ftpmirror.gnu.org though it can return a nonworking mirror sometimes too. Kernel.org typically works as a backup, that isn't as slow.
We recommend using this generic ftpmirror.gnu.org address wherever possible in links, documentation, etc., to reduce load on the main GNU server. https://www.gnu.org/server/mirror.en.html https://github.com/mstorsjo/llvm-mingw/commit/a96bbc0c7fc69e0a7d86678fb3d8c0234d7eb7d2 https://github.com/skeeto/w64devkit/commit/e97a594ca059b1c7b1355304a43c4a190a51622f
Are you sure this is enough? Anything you pass on the command line will still get redefined in config.h itself. This lets you turn on extra things, but not turn...
I missed the change to config.h because GitHub collapsed it, sorry! I will test this with gcc/make on Linux later.
I tested this with: `make CUSTOM_CFLAGS="-DSUPPORT_FILEFORMAT_PNG=0"` and I was then unable to load PNGs as expected LGTM
@JeffM2501 @raysan5 That's not true!!! I just tested myself ```c #include int main(void) { #if EXAMPLE_OPTION puts("option enabled"); #else puts("option disabled"); #endif } ``` ``` $ gcc test.c && ./a.exe...
https://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html > -D name > Predefine name as a macro, with definition 1.
Are there any concerns left holding this up?
Usually this is hanging when glfw is running the gamepad init. Can you break and see what is running during the long pause?
@MrKermit1 it would be best if you could break in the debugger during the pause to see what is running. But if SDL2 reproduces the same it might be a...