itkDB problem

G

Guenther Sohler

Guest
Hallo,

I was finally able to find out that itkDB is what I am looking for.
I have written a small testprogram.
Then using the supplied Makefile I get a lot of linking errors like

cpsLabelCInt.cpp:(.text+0x18): undefined reference to
`__1cG__CrunSregister_exit_code6FpG_v_v_'

does anybody know what I am doing wrong ?
 
Guenther Sohler wrote:
I was finally able to find out that itkDB is what I am looking for.
I have written a small testprogram.
Then using the supplied Makefile I get a lot of linking errors like

cpsLabelCInt.cpp:(.text+0x18): undefined reference to
`__1cG__CrunSregister_exit_code6FpG_v_v_'

does anybody know what I am doing wrong ?
Seems to be Solaris specific. Search google for the symbol and you will
find lots of similar errors, some with proposed solutions you may want
to try.

I'm using Linux...

Michael
 
Guenther Sohler <guenther.sohler@newlogic.com> writes:

I was finally able to find out that itkDB is what I am looking for.
I have written a small testprogram.
Then using the supplied Makefile I get a lot of linking errors like

cpsLabelCInt.cpp:(.text+0x18): undefined reference to
`__1cG__CrunSregister_exit_code6FpG_v_v_'

does anybody know what I am doing wrong ?
Wild guess: the provided Makefile has not be updated after adding some
C++ things in the libraries. Try using CC to link instead of cc
(simply adding -lCstd and -lCrun to the list of libraries could also
work, but it may not be enough).

Yours,

--
Jean-Marc
 

Welcome to EDABoard.com

Sponsor

Back
Top