boringssl: Remove -std=c++11 (#7623)

BoringSSL is trying to upgrade to C++14. Since that's default for Clang
and GCC for about five years now, just remove the explicit -std flag.
Hopefully that'll save some fuss later on when C++17 is the default
and we want to move there.

https://crbug.com/oss-fuzz/46932
This commit is contained in:
David Benjamin 2022-04-25 12:43:17 -04:00 committed by GitHub
parent 8a165f0a06
commit 31140e501d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ find . -name "*.a"
for F in $fuzzerFiles; do for F in $fuzzerFiles; do
fuzzerName=$(basename $F .cc) fuzzerName=$(basename $F .cc)
echo "Building fuzzer $fuzzerName" echo "Building fuzzer $fuzzerName"
$CXX $CXXFLAGS -std=c++11 \ $CXX $CXXFLAGS \
-o $OUT/${fuzzerName} $LIB_FUZZING_ENGINE $F \ -o $OUT/${fuzzerName} $LIB_FUZZING_ENGINE $F \
-I $SRC/boringssl/include ./ssl/libssl.a ./crypto/libcrypto.a -I $SRC/boringssl/include ./ssl/libssl.a ./crypto/libcrypto.a