Page 1 of 1

ImageMagick-6.7.2-7 on centos 5.5

Posted: 2011-09-21T07:05:55-07:00
by daniel2d2art
Compiling get this error:


$ sudo make
...
...
CC utilities/animate.o
CCLD utilities/animate
/usr/local/lib/libfpx.so: undefined reference to `__cxa_pure_virtual'
/usr/local/lib/libfpx.so: undefined reference to `__gxx_personality_v0'
/usr/local/lib/libfpx.so: undefined reference to `operator delete[](void*)'
/usr/local/lib/libfpx.so: undefined reference to `std::ios_base::Init::Init()'
/usr/local/lib/libfpx.so: undefined reference to `operator new(unsigned long)'
/usr/local/lib/libfpx.so: undefined reference to `operator delete(void*)'
/usr/local/lib/libfpx.so: undefined reference to `vtable for __cxxabiv1::__class_type_info'
/usr/local/lib/libfpx.so: undefined reference to `std::ios_base::Init::~Init()'
/usr/local/lib/libfpx.so: undefined reference to `vtable for __cxxabiv1::__si_class_type_info'
/usr/local/lib/libfpx.so: undefined reference to `operator new[](unsigned long)'
/usr/local/lib/libfpx.so: undefined reference to `vtable for __cxxabiv1::__vmi_class_type_info'
collect2: ld returned 1 exit status
make[1]: *** [utilities/animate] Error 1
make[1]: Leaving directory `/usr/local/src/ImageMagick-6.7.2-7'
make: *** [all] Error 2

Re: ImageMagick-6.7.2-7 on centos 5.5

Posted: 2011-09-21T07:28:58-07:00
by magick
Add --without-fpx to your configure command line. That removes the Flashpix dependency that is causing the linker problem.

Re: ImageMagick-6.7.2-7 on centos 5.5

Posted: 2011-09-21T07:56:17-07:00
by daniel2d2art
we used this:

$ sudo ./configure --with-fpx=no

After make, we pass test correctly

thx!