Centos 編譯安裝ACE

2021-06-22 14:17:34 字數 1053 閱讀 9030

這裡只安裝了ace,其他的包沒有涉及。

1.  tar -xvf  ace-x.x.x.tar.gz

2. 設定環境變數

vim ~/.bashrc

export ace_root=/home/

yourname

export ld_library_path=$ld_library_path:$ace_root/ace

cd ../include/makeinclude/

ln -s platform_linux.gnu platform_macros.gnu

4.可以在 

platform_macros.gnu

裡寫入 

install_prefix

=/home/

yourname

/ace_install_dir/

來制定輸出目錄

5.## 

64位 linux 需要作個小修改:

vim $ace_root/include/makeinclude/platform_linux.gnu

找到如下幾行

ifeq ($(buildbits),32)

flags_c_cc += -m32

ldflags += -m32

endif

ifeq ($(buildbits),64)

flags_c_cc += -m64

ldflags += -m64

endif

修改為ifeq ($(buildbits),32)

flags_c_cc += -m32

ldflags += -m32

endif

ifeq ($(buildbits),64)

flags_c_cc += -m64

flags_c_cc += -fpic

ldflags += -m64

endif

6.make && make install

1.  

2.  

Centos編譯安裝ACE

centos編譯安裝ace 這裡只安裝了ace,其他的包沒有涉及。tar xvf ace 6.0.3.tar.gz cd ace wrappers www.2cto.com 針對不同版本建立兩個檔案鏈結 cd ace ln s config linux.h config.h cd include m...

ACE編譯安裝

tar zxf ace 6.1.0.tar.gz 2.設定環境變數 vim bashrc export ace root home yourname export ld library path ld library path ace root ace 3.建立檔案 ace root ace con...

ACE在CentOS上編譯安裝及配置

參考了網上很多的內容,在此感謝各位,以下僅將自己的安裝過程分享出來。作業系統 centos 5.4 ace版本 ace 5.7 ace庫 ace57src.tar.gz 解壓至目標目錄。我解壓至。tar zxcf ace57src.tar.gz 安裝前的配置 vi etc profile expor...