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.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

In reaction to your comment on Eduard Wirch' answer: you can also control static linking for this one library only, if you replace -lhdf5 by -l/full/path/to/libhdf5.a

link|improve this answer
3  
It looks like the "-l" actually needs to be omitted, per the other answer given. If I include it the linker gives me "ld: library not found for -l/opt/local/lib/libhdf5.a", while simply passing it the path "/opt/local/lib/libhdf5.a" without a flag works fine. – dacc Nov 29 '10 at 22:33
feedback

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.

link|improve this answer
feedback

Use the "-static" switch for linking: GCC link options

link|improve this answer
Will this force static linking of all libraries, or can it's application be controlled on a per-library basis? – Barry Wark Jan 21 '09 at 6:13
Actually it will link all libraries static. – Eduard Wirch Jan 21 '09 at 12:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.