Displaying 1 result from an estimated 1 matches for "target_name_i_think".
2005 Feb 25
1
klibc wrapper
...the hello world program.
How can I compile my own program?
Can someone give an example or provide a simple wrapper program for doing this?
like uclibc did with their earlier versions.
I looked at the make process and did a bit reading and figure out this much:
gcc -Wp,[preprocessor options] -MT,[target_name_I_think] tests/hello.o,
-MD,[include dependency] tests/.hello.o.d
-mregparm=3 -DREGPARM=3 [Control how many registers are used to pass integer arguments]
-march=i386 [arch] -Os [optimization] -g [debug info]
-falign-functions=0 -falign-jumps=0 -falign-loops=0 [...