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
ImageMagick-6.7.2-7 on centos 5.5
-
- Posts: 4
- Joined: 2011-09-21T05:10:12-07:00
- Authentication code: 8675308
Re: ImageMagick-6.7.2-7 on centos 5.5
Add --without-fpx to your configure command line. That removes the Flashpix dependency that is causing the linker problem.
-
- Posts: 4
- Joined: 2011-09-21T05:10:12-07:00
- Authentication code: 8675308
Re: ImageMagick-6.7.2-7 on centos 5.5
we used this:
$ sudo ./configure --with-fpx=no
After make, we pass test correctly
thx!
$ sudo ./configure --with-fpx=no
After make, we pass test correctly
thx!