/usr/lib/pkgconfig/*.pc
) pkg-config --cflags "gdk-2.0"
gcc -S -c -o test.s test.c
gcc -c -Wa,-a,-ad test.c > test.lst
-Wa
instructs the GCC to pass the following options to AS
-a
is a short form of -ahls
which instructs the assembler to include assembly (-al
), include high-level source (-ah
) and to include symbols (-as
)-ad
omits any debugging directives from listingcpp -dM /dev/null
gcc -E -dM <file>