mirror of https://github.com/google/oss-fuzz.git
remove unused boost workaround (#5849)
This commit is contained in:
parent
d38fe1172c
commit
e9c0158ffb
|
@ -31,9 +31,6 @@ CFLAGS="" CXXFLAGS="" ./bootstrap.sh
|
|||
CFLAGS="" CXXFLAGS="" ./b2 headers
|
||||
cp -R boost/ /usr/include/
|
||||
|
||||
# Prevent Boost compilation error with -std=c++17
|
||||
export CXXFLAGS="$CXXFLAGS -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR"
|
||||
|
||||
# Configure Cryptofuzz
|
||||
cd $SRC/cryptofuzz/
|
||||
python gen_repository.py
|
||||
|
|
|
@ -50,9 +50,6 @@ go get golang.org/x/crypto/ripemd160
|
|||
# This enables runtime checks for C++-specific undefined behaviour.
|
||||
export CXXFLAGS="$CXXFLAGS -D_GLIBCXX_DEBUG"
|
||||
|
||||
# Prevent Boost compilation error with -std=c++17
|
||||
export CXXFLAGS="$CXXFLAGS -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR"
|
||||
|
||||
export CXXFLAGS="$CXXFLAGS -I $SRC/cryptofuzz/fuzzing-headers/include"
|
||||
if [[ $CFLAGS = *sanitize=memory* ]]
|
||||
then
|
||||
|
|
|
@ -26,9 +26,6 @@ CFLAGS="" CXXFLAGS="" ./bootstrap.sh
|
|||
CFLAGS="" CXXFLAGS="" ./b2 headers
|
||||
cp -R boost/ /usr/include/
|
||||
|
||||
# Prevent Boost compilation error with -std=c++17
|
||||
export CXXFLAGS="$CXXFLAGS -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR"
|
||||
|
||||
# Build libecc
|
||||
cd $SRC/libecc
|
||||
git checkout cryptofuzz
|
||||
|
|
|
@ -24,9 +24,6 @@ CFLAGS="" CXXFLAGS="" ./bootstrap.sh
|
|||
CFLAGS="" CXXFLAGS="" ./b2 headers
|
||||
cp -R boost/ /usr/include/
|
||||
|
||||
# Prevent Boost compilation error with -std=c++17
|
||||
export CXXFLAGS="$CXXFLAGS -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR"
|
||||
|
||||
mkdir -p $WORK/libressl
|
||||
cd $WORK/libressl
|
||||
|
||||
|
|
|
@ -26,9 +26,6 @@ CFLAGS="" CXXFLAGS="" ./bootstrap.sh
|
|||
CFLAGS="" CXXFLAGS="" ./b2 headers
|
||||
cp -R boost/ /usr/include/
|
||||
|
||||
# Prevent Boost compilation error with -std=c++17
|
||||
export CXXFLAGS="$CXXFLAGS -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR"
|
||||
|
||||
# Build Relic
|
||||
cd $SRC/relic/
|
||||
mkdir build/
|
||||
|
|
Loading…
Reference in New Issue