在ubuntu 11.10&上安装带有passenger-install-nginx-module的nginx时出错rails 3.1.0

时间:2011-11-17 16:46:25

标签: ruby-on-rails ubuntu nginx passenger

以下是使用乘客安装安装nginx的错误消息 nginx-module(rvmsudo)。在/ opt / nginx(默认)下安装了nginx 1.0.6。宝石安装乘客成功之前。

有人对这个问题有所了解吗?感谢。

/usr/bin/ld: /home/dtt/.rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.9/
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-2135/nginx-1.0.6'
make: *** [build] Error 2
--------------------------------------------

It looks like something went wrong

...

2 个答案:

答案 0 :(得分:0)

Passenger会下载头文件并将其自身链接到您尝试使用的Ubuntu版本所没有的特定库。为了获得最佳效果,请尝试使用LTS发行版。

答案 1 :(得分:0)

来自https://groups.google.com/forum/#!topic/phusion-passenger/OW-NDvlWLno

 hey! I solve this issue moving block:

 ngx_feature="Math library" ngx_feature_name= ngx_feature_run=no
 ngx_feature_incs="#include <math.h>" ngx_feature_path=
 ngx_feature_libs="-lm" ngx_feature_test="pow(1, 2)"  . auto/feature if
 [ $ngx_found = yes ]; then
     CORE_LIBS="$CORE_LIBS -lm" fi

 to after:

 ngx_addon_name=ngx_http_passenger_module HTTP_MODULES="$HTTP_MODULES
 ngx_http_passenger_module" NGX_ADDON_SRCS="$NGX_ADDON_SRCS \
     ${ngx_addon_dir}/ngx_http_passenger_module.c \
     ${ngx_addon_dir}/Configuration.c \
     ${ngx_addon_dir}/ContentHandler.c \
     ${ngx_addon_dir}/StaticContentHandler.c" NGX_ADDON_DEPS="$NGX_ADDON_DEPS \   
     ${ngx_addon_dir}/Configuration.h \
     ${ngx_addon_dir}/ContentHandler.h \
     ${ngx_addon_dir}/StaticContentHandler.h \
     ${ngx_addon_dir}/ngx_http_passenger_module.h \
     ${ngx_addon_dir}/../common/Constants.h" CORE_LIBS="$CORE_LIBS  \
     ${ngx_addon_dir}/../common/libpassenger_common.a \
     ${ngx_addon_dir}/../common/libboost_oxt.a \
     -lstdc++ -lpthread"

 in ext/nginx/config
相关问题