Skip to content

Commit eb1c93a

Browse files
committed
Use C++17 to build scudo
1 parent a85d7ff commit eb1c93a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-bench-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ if test "$setup_scudo" = "1"; then
499499
partial_checkout scudo $version_scudo https://github.com/llvm/llvm-project "compiler-rt/lib/scudo/standalone"
500500
cd "compiler-rt/lib/scudo/standalone"
501501
# TODO: make the next line prettier instead of hardcoding everything.
502-
clang++ -flto -fuse-ld=lld -fPIC -std=c++14 -fno-exceptions $CXXFLAGS -fno-rtti -fvisibility=internal -msse4.2 -O3 -I include -shared -o libscudo$extso *.cpp -pthread
502+
clang++ -flto -fuse-ld=lld -fPIC -std=c++17 -fno-exceptions $CXXFLAGS -fno-rtti -fvisibility=internal -msse4.2 -O3 -I include -shared -o libscudo$extso *.cpp -pthread
503503
cd -
504504
popd
505505
fi

0 commit comments

Comments
 (0)