2011-10-17 18 views
5

私はubuntu 11.10にアップグレードしました。私はphusionの乗客を始めて問題があります。私は次のエラーを取得する:この問題のためか、それはすぐに修正することができる既知の問題であるかの修正がある場合Phusion Passenger Ubuntu 11.10

/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 '[email protected]@GLIBC_2.2.5' 
/usr/bin/ld: note: '[email protected]@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 

思っていました。

ありがとう

答えて

11

この問題を解決するには、gcc-4.4をインストールします。私は乗客の宝石がすでにインストールされていた、とRVMをインストールrvmsudoシステム全体の1の代わりに使用していたとして

sudo apt-get install gcc-4.4 g++-4.4 libstdc++6-4.4-dev 
rvmsudo CC=gcc-4.4 passenger-install-nginx-module 
+0

はまだ14.04上の問題を解決します:) – soupdiver

0

rvmsudoソリューションは、私のために動作しませんでした。私のため仕事をした何

は次のとおりです。

sudo apt-get install gcc-4.4 g++-4.4 libstdc++6-4.4-dev 
CC=gcc-4.4 passenger start 
関連する問題