diff options
author | Jack Lloyd <[email protected]> | 2017-12-02 07:46:59 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-02 08:24:19 -0500 |
commit | 35add1e69f380eeb3010e1d0cda5225fc8c5a0bf (patch) | |
tree | a72f4f7a77b8691e3c02963e54d94e173470a34e /src/scripts | |
parent | d7d0b4bf346a9cb383ad42c61a599140a4d8a269 (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-x | src/scripts/ci_build.py | 5 |
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': |