Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Embeddable GCC

Name: Anonymous 2016-09-08 14:56

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: Anonymous 2016-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;
}

int main(void) {
meme kek = mememaker(5,'a');
printf("%d, %c\n", kek.hax, kek.anus);
}

PS C:\Users\Adam> tcc anus.c -o anus.exe
PS C:\Users\Adam> ./anus.exe
5, a
PS C:\Users\Adam>

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List