Skip to content

Commit

Permalink
Fix CC anc CXX definitions under MacOS. Disable mcopteron test on Mac…
Browse files Browse the repository at this point in the history
…OS correctly.
  • Loading branch information
jwilso committed Sep 4, 2013
1 parent 79b3a16 commit b0d66ca
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions bamboo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,9 @@ getconfig() {
fi

# On MacOSX Lion, suppress the following:
# genericProc
# PhoenixSim
if [ $3 == "Darwin" ]
then
echo "$USER" > ./sst/elements/genericProc/.ignore
echo "$USER" > ./sst/elements/PhoenixSim/.ignore
fi

Expand Down Expand Up @@ -848,8 +846,8 @@ else
module unload boost
module add mpi/openmpi-1.6.3_gcc-4.2.1
module add boost/boost-1.50.0_ompi-1.6.3_gcc-4.2.1
export CC='which gcc'
export CXX='which g++'
export CC=`which gcc`
export CXX=`which g++`
module list
;;
clang-425.0.27)
Expand All @@ -858,8 +856,8 @@ else
module unload boost
module add mpi/openmpi-1.6.3_clang-425.0.27
module add boost/boost-1.50.0_ompi-1.6.3_clang-425.0.27
export CC='which clang'
export CXX='which clang++'
export CC=`which clang`
export CXX=`which clang++`
module list
;;
*)
Expand Down

0 comments on commit b0d66ca

Please sign in to comment.