vote up 1 vote down star
1

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.

flag

2 Answers

vote up 2 vote down check

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|flag
vote up 2 vote down

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

link|flag
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

Your Answer

Get an OpenID
or

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