[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:
Kai Luo 2022-10-10 09:38:38 +08:00
parent 0666e50e14
commit 50312ea133
1 changed files with 1 additions and 1 deletions

View File

@ -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"