Skip to content

Commit

Permalink
Add setup script for 8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
a2wagner committed Dec 5, 2018
1 parent c581d70 commit e579ee3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup_8.2.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# source this file to setup the deployed package
if [[ ! -z "$CXX" && "$CXX" != "g++" ]]; then
return
fi
wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=3 https://github.com/A2-Collaboration/travis-container-packets/releases/download/gcc-8.2.0/gcc.tar.xz
tar -xJf gcc.tar.xz
rm gcc.tar.xz
export PATH=$(pwd)/gcc/bin:$PATH
export LIBRARY_PATH=$(pwd)/gcc/lib64:$LIBRARY_PATH
export LD_LIBRARY_PATH=$(pwd)/gcc/lib64:$LD_LIBRARY_PATH
export CPLUS_INCLUDE_PATH=$(pwd)/gcc/include/c++/8.2.0:$CPLUS_INCLUDE_PATH

0 comments on commit e579ee3

Please sign in to comment.