|
|
|
|
|
by jacobvosmaer
2314 days ago
|
|
Clang on my macOS doesn't like the fact that main() takes and returns long long. But it appears GCC on Debian 8 (random linux I have lying around) doesn't mind. I get it to compile on macOS if I remove the int define but then it segfaults when you run it. I wonder if there is some magic flag to make "main does not return int" a non-fatal error on Clang? It's fun to read this code but running it is even more fun, you can see the VM code it generates, with source line annotations and all. |
|
#include <stdint.h>
...and then replace the two "int" in main() with int32_t.