首页 > 代码库 > ubuntu 14.04下ACE的安装
ubuntu 14.04下ACE的安装
1. 从 ACE 官网(http://download.dre.vanderbilt.edu/)下载 ACE+TAO+CIAO-6.2.7.tar.bz2,放在/home/yourname; 用
tar xvjf ACE+TAO+CIAO-6.1.2.tar.bz2 解压得到 /home/yourname/ACE_wrappers
su 到 root 账户下
2. 设置环境变量: ACE_ROOT=/home/yourname/ACE_wrappers; export ACE_ROOT
备注: 这里是临时的环境变量设置,如果想后面使用的时候每次都有这个,把设置写进 .bash_profile
3. 创建文件 $ACE_ROOT/ace/config.h 写入如下内容 #include "ace/config-linux.h"
备注: 这里可以定义宏,改变 ACE 的某些特性
4. 创建文件 $ACE_ROOT/include/makeinclude/platform_macros.GNU 写入 include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
备注: 这里是 build configuration, include 前不需要 #
这步比较重要,否则make可能会出错.
5. 可以在 platform_macros.GNU 里写入 INSTALL_PREFIX = /home/yourname/ace_install_612/ 来制定输出目录(可有可无)
6. 设置环境变量 LD_LIBRARY_PATH=$ACE_ROOT/lib:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH
7. make -j8
8. make install
注:
(1)如make 编译过程中出现ace SAXPrint compile error,解决办法是在config.h中增加一句
#define ACE_GCC_HAS_TEMPLATE_INSTANTIATION_VISIBILITY_ATTRS 1
(2)如make install 时出现
The variable INSTALL_PREFIX must be set to install.
If binaries are already built and you want to use RPATH,
they must be rebuilt after changing INSTALL_PREFIX.
make[1]: *** [install] 错误 1
make[1]: 离开目录“/home/pz/ACE/ACE_wrappers/TAO/TAO_IDL”
make: *** [install] 错误 2
解决办法:环境变量中添加:
INSTALL_PREFIX=/usr/local
export INSTALL_PREFIX
再安装。
本文出自 “sky-moon” 博客,请务必保留此出处http://248341.blog.51cto.com/238341/1539264