|
You might try "gcc -v hello.c -o hello" to see if you can find out. The -v should make it output the command lines of all of the sub-processes.
Also rather than invoke ld directly, you probably can let gcc do it for you. Try:
gcc first.o -lc -o first
|