How can i create a static build of a .c file on Mac OS X ? When i try:
gcc -o test Main.c -static
I get:
ld: library not found for -lcrt0.o
collect2: ld returned 1 exit status
|
|
It is not supported in Mac OS X's gcc: http://discussions.apple.com/message.jspa?messageID=11053384
And http://developer.apple.com/library/mac/#qa/qa2001/qa1118.html
Update: The prohibited is a static binary. But you still can compile some static library and use it with you another program. Program will be linked statically with your library, but other libraries like libc will be dynamic, so program will be a dynamic executable. |
|||||
|
|
A binary that has no dynamic loaded libraries can not be built under OSX. I tried both apple llvm-gcc and macports gcc. However what no answer mentioned so far is that this is not needed. You can link the c/c++ library statically (and live with some dynamic part). File hello.cpp:
Compile as usual:
Check linkage:
We can not get rid of the libSystem.B.dylib dependency but with macports gcc we can do this:
Apparently just Apple does not support static linking:
|
|||
|
|
|
Imagine that you want to convert some functions into a library. File: example.c
File: example.h
File: main.c
To create the library:
To link the library:
And then the file example.c is a static build of the entire program. |
|||||||||||||
|