[PATCH] D77111: Fix buildgo.sh script because of recent changes causing build failures with gcc on linux

Douglas Yung via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 31 10:00:14 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG41c135d6d288: Fix buildgo.sh script to fix linux build failure due to changes in ad1466f8cbc5. (authored by dyung).
Herald added a project: Sanitizers.
Herald added a subscriber: Sanitizers.

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D77111/new/

https://reviews.llvm.org/D77111

Files:
  compiler-rt/lib/tsan/go/buildgo.sh


Index: compiler-rt/lib/tsan/go/buildgo.sh
===================================================================
--- compiler-rt/lib/tsan/go/buildgo.sh
+++ compiler-rt/lib/tsan/go/buildgo.sh
@@ -149,7 +149,7 @@
 	cat $F >> $DIR/gotsan.cpp
 done
 
-FLAGS=" -I../rtl -I../.. -I../../sanitizer_common -I../../../include -std=c++11 -Wall -fno-exceptions -fno-rtti -DSANITIZER_GO=1 -DSANITIZER_DEADLOCK_DETECTOR_VERSION=2 $OSCFLAGS $ARCHCFLAGS"
+FLAGS=" -I../rtl -I../.. -I../../sanitizer_common -I../../../include -std=c++14 -Wall -fno-exceptions -fno-rtti -DSANITIZER_GO=1 -DSANITIZER_DEADLOCK_DETECTOR_VERSION=2 $OSCFLAGS $ARCHCFLAGS"
 DEBUG_FLAGS="$FLAGS -DSANITIZER_DEBUG=1 -g"
 FLAGS="$FLAGS -DSANITIZER_DEBUG=0 -O3 -fomit-frame-pointer"
 if [ "$SUFFIX" = "linux_ppc64le" ]; then


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77111.253920.patch
Type: text/x-patch
Size: 778 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200331/321b2e33/attachment-0001.bin>


More information about the llvm-commits mailing list