Vale
Vale copied to clipboard
Cant have a directory the same name as a C file
Apparently we cant have a directory the same name as a C file, because:
- every directory results in a .obj file with that name
- every C file also results in a .obj file with that name
so they collide in the linker step on windows. I'm not really sure why mac and ubuntu doesn't have the same problem.
Try renaming mathnative.c to math.c to see it happen.