blob: 0716361031af64ef592c2ed61f3765bb7586e5ae (
plain)
1
2
3
4
5
|
gcc -O2 -Wall -ansi -pedantic-errors -fomit-frame-pointer -D_GNU_SOURCE
This will be used to compile .c files.
use -fPIC to generate position-independent code
-fpic generate faster and smaller code, but has platform-dependent limitations and may not work.
|