Skip to content

Commit abce80c

Browse files
committed
ensure CC is set in addition to CXX when building
1 parent d15b5e9 commit abce80c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/aws_tests.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@ process_instance() {
193193
clang++ --version > outputs/clang++.txt
194194
195195
echo "Building project with g++ and running the benchmarks..."
196-
CXX=g++ cmake -B build . && cmake --build build
196+
CC=gcc CXX=g++ cmake -B build . && cmake --build build
197197
./scripts/generate_multiple_tables.py g++
198198
199199
rm -rf build
200200
201201
echo "Building project with clang++ and running the benchmarks..."
202-
CXX=clang++ cmake -B build . && cmake --build build
202+
CC=clang CXX=clang++ cmake -B build . && cmake --build build
203203
./scripts/generate_multiple_tables.py clang++
204204
EOF
205205

0 commit comments

Comments
 (0)