Skip to content

Instantly share code, notes, and snippets.

@raybsmith
Created November 2, 2016 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raybsmith/c17321f9f1c5fd8a609d25ed5a47b432 to your computer and use it in GitHub Desktop.
Save raybsmith/c17321f9f1c5fd8a609d25ed5a47b432 to your computer and use it in GitHub Desktop.
DAE Tools build script
pyver="3.4"
pypath="/usr/bin/python3.4"
pyver="3.5"
pypath="/home/raymond/.pyenv/versions/3.5.2/bin/python3.5"
libs_list="boost ref_blas_lapack umfpack idas superlu superlu_mt bonmin nlopt trilinos deal.ii"
builds_list="dae superlu superlu_mt trilinos ipopt bonmin nlopt deal.ii"
#libs_list="boost"
#builds_list=""
for lib in ${libs_list}; do
echo ${lib}
#sh compile_libraries_linux.sh --with-python-version ${pyver} ${lib} 2>&1 | tee build_lib_${lib}.txt
sh compile_libraries_linux.sh --with-python-binary ${pypath} ${lib} 2>&1 | tee build_lib_${lib}.txt
done
for build in ${builds_list}; do
echo ${build}
#sh compile_linux.sh --with-python-version ${pyver} ${build} 2>&1 | tee build_${build}.txt
sh compile_linux.sh --with-python-binary ${pypath} ${build} 2>&1 | tee build_comp_${build}.txt
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment