07-02-2021, 12:51 PM
(07-01-2021, 07:46 PM)megamarc Wrote: Hi, is it working for you?
If you're targeting windows x64, you can use tcc (Tiny C Compiler): https://bellard.org/tcc/
I also have an alternative build script (build.bat) that builds samples using this tool, I use it internally to build and test samples:
https://github.com/megamarc/Tilengine/bl.../build.bat
Hey, thanks for checking! I finally got the samples to build using tcc. I also had to get SDL2.dll from the SDL website.
It turns out that I need mingw64 for raylib, so I couldn't just have 32 installed instead. It looked like you might not be able to have both 64 and 32 on the same computer since 64 tries to function as 32 when it's installed & they use the same command. tcc worked perfectly, so that solved the problem.
By the way, I have one small question. Can you disable the escape key from exiting the application?