(PORTAL1)$>gcc -v
Reading specs from /usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6/specs
Configured with: ../configure --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/ld --enable-shared --enable-languages=c,c++,f77
Thread model: posix
gcc version 3.4.6
以上应该表明我的jcc是已经安装上去的了。
我执行nginx安装的时候
./configure --prefix=/opt/wlan/nginx/soft/nginx --with-pcre=/opt/wlan/nginx/pcre-8.10 --with-http_stub_status_module
提示我
(PORTAL1)$>./configure --prefix=/opt/wlan/nginx/soft/nginx --with-pcre=/opt/wlan/nginx/pcre-8.10 --with-http_stub_status_module
checking for OS
+ SunOS 5.10 sun4v
checking for C compiler ... not found
这个是怎么回事。请求帮助!!!!!!!!!!!!!!!!
6 个解决方案
#1
你要安装gcc才行。
#2
yum install gcc
#3
Solaris11_64环境
gcc和c++装完之后配置nginx的时候还会报cc找不到
错误:“./configure: error: C compiler cc is not found” //它的意思是cc没找到 你看看和你的一样吗?上边拟略去了N个字!
解决方法:
CC=gcc
export CC
设置这个环境变量,让gcc来代替cc!
gcc和c++装完之后配置nginx的时候还会报cc找不到
错误:“./configure: error: C compiler cc is not found” //它的意思是cc没找到 你看看和你的一样吗?上边拟略去了N个字!
解决方法:
CC=gcc
export CC
设置这个环境变量,让gcc来代替cc!
#4
很好奇3L是不是正解
#5
三楼的应该是可以的,
我是这样
./configure --prefix=/opt/wlan/nginx/soft/nginx --with-pcre=/opt/wlan/nginx/pcre-8.10 --with-http_stub_status_module --with-cc=/usr/local/bin/gcc
--with-http_ssl_module --with-openssl=/opt/wlan/nginx/openssl-1.0.0a
原理应该是一样的
我是这样
./configure --prefix=/opt/wlan/nginx/soft/nginx --with-pcre=/opt/wlan/nginx/pcre-8.10 --with-http_stub_status_module --with-cc=/usr/local/bin/gcc
--with-http_ssl_module --with-openssl=/opt/wlan/nginx/openssl-1.0.0a
原理应该是一样的
#6
#1
你要安装gcc才行。
#2
yum install gcc
#3
Solaris11_64环境
gcc和c++装完之后配置nginx的时候还会报cc找不到
错误:“./configure: error: C compiler cc is not found” //它的意思是cc没找到 你看看和你的一样吗?上边拟略去了N个字!
解决方法:
CC=gcc
export CC
设置这个环境变量,让gcc来代替cc!
gcc和c++装完之后配置nginx的时候还会报cc找不到
错误:“./configure: error: C compiler cc is not found” //它的意思是cc没找到 你看看和你的一样吗?上边拟略去了N个字!
解决方法:
CC=gcc
export CC
设置这个环境变量,让gcc来代替cc!
#4
很好奇3L是不是正解
#5
三楼的应该是可以的,
我是这样
./configure --prefix=/opt/wlan/nginx/soft/nginx --with-pcre=/opt/wlan/nginx/pcre-8.10 --with-http_stub_status_module --with-cc=/usr/local/bin/gcc
--with-http_ssl_module --with-openssl=/opt/wlan/nginx/openssl-1.0.0a
原理应该是一样的
我是这样
./configure --prefix=/opt/wlan/nginx/soft/nginx --with-pcre=/opt/wlan/nginx/pcre-8.10 --with-http_stub_status_module --with-cc=/usr/local/bin/gcc
--with-http_ssl_module --with-openssl=/opt/wlan/nginx/openssl-1.0.0a
原理应该是一样的