forked from OSchip/llvm-project
[tsan][go] Fix string equal operator
Fixed error ``` compiler-rt/lib/tsan/go/buildgo.sh: 62: [: unexpected operator ``` Reviewed By: vitalybuka Differential Revision: https://reviews.llvm.org/D135537
This commit is contained in:
parent
0666e50e14
commit
50312ea133
|
@ -59,7 +59,7 @@ if [ "`uname -a | grep Linux`" != "" ]; then
|
|||
ARCHCFLAGS="-m64 -mcpu=power8 -fno-function-sections"
|
||||
elif [ "`uname -a | grep x86_64`" != "" ]; then
|
||||
SUFFIX="linux_amd64"
|
||||
if [ "$GOAMD64" == "v3" ]; then
|
||||
if [ "$GOAMD64" = "v3" ]; then
|
||||
ARCHCFLAGS="-m64 -msse4.2"
|
||||
else
|
||||
ARCHCFLAGS="-m64 -msse3"
|
||||
|
|
Loading…
Reference in New Issue