Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force static linking of library linked to Xcode target?

Tags:

xcode

gcc

linker

My Xcode target links against hdf5 library (using the Link Binary with Libraries build phase). libhdf5 is installed using MacPorts, thus /opt/local/lib contains both the dynamic (.dylib) and static (.a) versions of the library.

The text output from the build shows that there is, as expected, a -lhdf5 in the linking step of the build. gcc seems to take the dynamic linked library over the static, however. Is there any way to force gcc (via a compiler switch or via Xcode) to statically link with libhdf5.a?

The only solution I've found is to copy libhdf5.a to the project (or other) directory and link against that copy, thus avoiding having dynamic and static versions in the same location.

like image 547
Barry Wark Avatar asked Jan 19 '09 19:01

Barry Wark


1 Answers

Had this exact same problem and despite this being an old post, I thought I'd share what I had to do to make this work.

Usually you do just provide the switch '-static' to the linker however, with Xcode this causes all libs including the crt to be linked statically. I got the error:

can't locate file for: -lcrt0.o

When I tried this.

The thing which worked for me was to replace:

-lmylib

with

/path/to/libmylib.a

Note: the -l is dropped.

like image 173
user500515 Avatar answered Nov 15 '22 22:11

user500515