aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/sycl/crosstool/computecpp.tpl
diff options
context:
space:
mode:
authorGravatar Luke Iwanski <luke@codeplay.com>2016-11-09 04:01:23 +0000
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2016-11-15 19:33:46 -0800
commitfa0abcfd8a5f8257624fcf0927df2ccffe0068aa (patch)
tree3b67dc4446707239e49c5c5edb2830fb371267fd /third_party/sycl/crosstool/computecpp.tpl
parentbc923f66566b56b141a864b851a2d8ee8cfa9894 (diff)
Registered More Ops for SYCL device
Diffstat (limited to 'third_party/sycl/crosstool/computecpp.tpl')
-rwxr-xr-xthird_party/sycl/crosstool/computecpp.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/sycl/crosstool/computecpp.tpl b/third_party/sycl/crosstool/computecpp.tpl
index 56cc1fb3fd..d319a1eb75 100755
--- a/third_party/sycl/crosstool/computecpp.tpl
+++ b/third_party/sycl/crosstool/computecpp.tpl
@@ -50,7 +50,7 @@ def main():
x = subprocess.call([COMPUTECPP_DRIVER] +computecpp_compiler_flags )
if(x == 0):
- host_compiler_flags = ['-DTENSORFLOW_USE_SYCL', '-Wno-unused-variable', '-I', COMPUTECPP_INCLUDE, "--include",bc_out] + host_compiler_flags
+ host_compiler_flags = ['-D_GLIBCXX_USE_CXX11_ABI=0', '-DTENSORFLOW_USE_SYCL', '-Wno-unused-variable', '-I', COMPUTECPP_INCLUDE, "--include",bc_out] + host_compiler_flags
return subprocess.call([CPU_CXX_COMPILER] +host_compiler_flags )
return x
else: