1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 01:07:11 -07:00

remove checks for ancient clang

This commit is contained in:
Connor Olding 2019-04-29 20:47:13 +02:00
parent 2b400968db
commit 2e1f792647

View File

@ -55,8 +55,8 @@ unset LD_LIBRARY_PATH
export PREFIX="$HOME/opt/local"
export EDITOR='vim'
export CC="$(has clang || has clang-3.8 || has gcc)"
export CXX="$(has clang++ || has clang++-3.8 || has g++)"
export CC="$(has clang || has gcc)"
export CXX="$(has clang++ || has g++)"
export CXXFLAGS="$CFLAGS"
export MAKEFLAGS="-j2"
export OMP_NUM_THREADS=4