Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Phusion Passenger Ubuntu 11.10

I just upgraded to ubuntu 11.10 and I have a problem starting phusion passenger. I get the following error:

/usr/bin/ld: /usr/lib/ruby/gems/1.8/gems/passenger-3.0.8/ext/nginx/../common/libpassenger_common.a(aggregate.o): undefined reference to symbol 'round@@GLIBC_2.2.5'
/usr/bin/ld: note: 'round@@GLIBC_2.2.5' is defined in DSO /usr/lib/gcc/x86_64-linux-gnu/4.6.1/../../../x86_64-linux-gnu/libm.so so try adding it to the linker command line
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/../../../x86_64-linux-gnu/libm.so: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
make[1]: *** [objs/nginx] Error 1
make[1]: Leaving directory `/tmp/root-passenger-23103/nginx-1.0.5'
make: *** [build] Error 2

Was wondering if there is a fix for this issue or if it is a known issue that may be fixed soon.

Thanks

like image 655
GTDev Avatar asked Oct 17 '11 09:10

GTDev


1 Answers

To fix this problem install gcc-4.4.

sudo apt-get install gcc-4.4 g++-4.4 libstdc++6-4.4-dev
rvmsudo CC=gcc-4.4 passenger-install-nginx-module
like image 146
Milan Avatar answered Oct 17 '22 21:10

Milan