Hi, I'm running Red Hat 8 and I'm programming in C and C++, but compiled file sizes seem to be a little bit big?
eg:
int main() {
int i=0;
}
when i compile this with: gcc -O2 test.c -o test
the file size is 9748kb - this seems a little bit large for one command - is there a way to reduce the size in anyway?
thanks.
eg:
int main() {
int i=0;
}
when i compile this with: gcc -O2 test.c -o test
the file size is 9748kb - this seems a little bit large for one command - is there a way to reduce the size in anyway?
thanks.