arc_lupus
arc_lupus

Reputation: 4114

error adding symbols while compiling gdcm

I wanted to compile gdcm from source code on eOS 0.3/Ubuntu 14.04, and add python support. Therefore I installed swig, and afterwards ran ccmake (for configuring the make file) and make. Unfortunately I get the error:

../../bin/libgdcmMEXD.a: error adding symbols

How can I fix that?

Upvotes: 0

Views: 63

Answers (1)

malat
malat

Reputation: 12510

I would try to build using shared libs instead. From the ccmake interface you should see something like

GDCM_BUILD_SHARED_LIBS  ON

Then rebuild:

$ make clean && make

Upvotes: 0

Related Questions