- 积分
- 50
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2018-9-29
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2020-8-16 12:51:43
|
显示全部楼层
1.在Ubuntu下安装下列软件
(1)apt-get update
(2)apt-get install make
手动安装make:
wget http://ftp.gnu.org/gnu/make/make-4.2.tar.gz
tar -zxvf make-4.2.tar.gz
cd make-4.2
./configure
make
make install
ln -s -f /usr/local/bin/make /usr/bin/make
(3) apt install automake1.11
(4)apt install gfortran
(5)apt install gcc+
(6)apt install gcc-
(7)apt install g++
(8)apt-get install libtool
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make
2.根据安装手册解压后运行./compile_gnu_debug.sh,这一步运行完在src中会有cost733class
cp -r cost733class /usr/local/bin |
|