File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1818export PATH=" $TOOLCHAIN_PATH :${ORIGINAL_PATH} "
1919
2020
21- if [ ` uname` != Darwin ]; then
21+ if [ ` uname` = Darwin ]; then
22+ echo " Using clang version:"
23+ (which clang && clang --version)
24+
25+ echo " Using clang++ version:"
26+ (which clang++ && clang++ --version)
27+ else
2228 export CC=gcc
2329 export CXX=g++
2430
Original file line number Diff line number Diff line change @@ -38,7 +38,13 @@ if [ "$OS" != "Windows_NT" ]; then
3838 set -x
3939 export PATH=" $NVM_BIN :$PATH "
4040
41- if [ ` uname` != Darwin ]; then
41+ if [ ` uname` = Darwin ]; then
42+ echo " Using clang version:"
43+ (which clang && clang --version)
44+
45+ echo " Using clang++ version:"
46+ (which clang++ && clang++ --version)
47+ else
4248 export CC=gcc
4349 export CXX=g++
4450
You can’t perform that action at this time.
0 commit comments