Skip to content

Instantly share code, notes, and snippets.

@rsa
Created December 28, 2010 16:42
Show Gist options
  • Save rsa/757401 to your computer and use it in GitHub Desktop.
Save rsa/757401 to your computer and use it in GitHub Desktop.
BASH script to install external ACE
#!/bin/bash
cd /root
wget http://download.dre.vanderbilt.edu/previous_versions/ACE-5.8.3.tar.gz
tar xvfz ACE-5.8.3.tar.gz
cd ACE_wrappers
mkdir objdir
cd objdir
../configure --disable-ace-tests --disable-ace-examples --prefix=/usr/local/
make -j2
make install
cd /usr/lib
ln -s /usr/local/lib/libACE.so .
ln -s /usr/local/lib/libACE-5.8.3.so .
cd /usr/include/
ln -s /usr/local/include/ace/ .
@nosmall
Copy link

nosmall commented Jul 2, 2015

Thank you very much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment