aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-12-02 07:46:59 -0500
committerJack Lloyd <[email protected]>2017-12-02 08:24:19 -0500
commit35add1e69f380eeb3010e1d0cda5225fc8c5a0bf (patch)
treea72f4f7a77b8691e3c02963e54d94e173470a34e /src/scripts
parentd7d0b4bf346a9cb383ad42c61a599140a4d8a269 (diff)
Drop support for Cilk+
It's been dropped from GCC, appears OpenACC is the new hotness for this kind of thing.
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/ci_build.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py
index 84deec8be..72e9d8e62 100755
--- a/src/scripts/ci_build.py
+++ b/src/scripts/ci_build.py
@@ -104,10 +104,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro
flags += ['--disable-modules=locking_allocator']
if target == 'parallel':
- if target_cc == 'gcc':
- flags += ['--with-cilkplus']
- else:
- flags += ['--with-openmp']
+ flags += ['--with-openmp']
if target == 'sonar':
if target_os != 'linux' or target_cc != 'clang':