Fix buildgo.sh script to fix linux build failure due to changes in ad1466f8cbc5.
authorDouglas Yung <douglas.yung@sony.com>
Tue, 31 Mar 2020 16:26:43 +0000 (09:26 -0700)
committerDouglas Yung <douglas.yung@sony.com>
Tue, 31 Mar 2020 16:32:00 +0000 (09:32 -0700)
commit41c135d6d2882ee6592a1c51a0221ef6def79ee4
treed4214ae04836df3d96d14675d1bef1e4f0261430
parent21d9d0855be17220e869ef5bbec2d839fe841840
Fix buildgo.sh script to fix linux build failure due to changes in ad1466f8cbc5.

The above change used a binary literal that is not supported in c++11 mode when
using gcc. It was formalized into the c++14 standard and works when using that
mode to compile, so change the script to use c++14 instead.

Reviewed by: dvyukov

Differential Revision: https://reviews.llvm.org/D77111
compiler-rt/lib/tsan/go/buildgo.sh