[llvm_libcxx] switch to the new github repo (#3113)

This commit is contained in:
Kostya Serebryany 2019-12-12 11:15:57 -08:00 committed by Abhishek Arya
parent 4da5132015
commit 2290b8080c
2 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,5 @@
# #
################################################################################ ################################################################################
FROM gcr.io/oss-fuzz-base/base-builder FROM gcr.io/oss-fuzz-base/base-builder
RUN svn co http://llvm.org/svn/llvm-project/libcxxabi/trunk libcxxabi RUN git clone --depth 1 https://github.com/llvm/llvm-project.git
RUN svn co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx
COPY build.sh $SRC/ COPY build.sh $SRC/

View File

@ -15,6 +15,8 @@
# #
################################################################################ ################################################################################
cd llvm-project
if [[ $SANITIZER = *undefined* ]]; then if [[ $SANITIZER = *undefined* ]]; then
CXXFLAGS="$CXXFLAGS -fsanitize=unsigned-integer-overflow -fsanitize-trap=unsigned-integer-overflow" CXXFLAGS="$CXXFLAGS -fsanitize=unsigned-integer-overflow -fsanitize-trap=unsigned-integer-overflow"
fi fi