当前位置 : 主页 > 编程语言 > c++ >

resin安装.txt

来源:互联网 收集:自由互联 发布时间:2021-06-30
resin安装.txt 下载:wget http://www.caucho.com/download/resin-4.0.27.tar.gztar -xvf resin-4.0.27.tar.gzmkdir -p /usr/local/resinmv resin-4.0.27 /usr/local/resin./configure --prefix=/usr/local/resin \make make installRESIN_HOME=/usr/loc
resin安装.txt
下载:wget http://www.caucho.com/download/resin-4.0.27.tar.gz

tar -xvf resin-4.0.27.tar.gz
mkdir -p /usr/local/resin
mv resin-4.0.27 /usr/local/resin

./configure --prefix=/usr/local/resin \
make && make install


RESIN_HOME=/usr/local/resin
PATH=$RESIN_HOME/bin:$PATH
export RESIN_HOME PATH



错误
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/Users/durrantm/.rvm/src/ruby-1.9.2-p290':
configure: error: no acceptable C compiler found in $PATH

yum -y install gcc openssl-devel
网友评论