Is there a small version of GCC for shipping with Windows program? Because Mingw installation takes frigging gigabyte, including a lot of bloat, like C++ and fortran compiler, with useless crap, like directx bindings.
Name:
Anonymous2016-09-16 2:08
>>94,95 My TCC on windows works just fine. I just copied your code and it had not a problem. I use TCC exclusively on Windows so I don't have to deal with GNU nonsense and I have not once had any of the issues in this thread.
PS C:\Users\Adam> more anus.c #include <stdio.h>
typedef struct meme { int hax; char anus; } meme;
meme mememaker(int n, char c) { meme ameme; ameme.hax = n; ameme.anus = c; return ameme; }