aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
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 /configure.py
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 'configure.py')
-rwxr-xr-xconfigure.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/configure.py b/configure.py
index 76887a4d1..320c62ec1 100755
--- a/configure.py
+++ b/configure.py
@@ -427,8 +427,6 @@ def process_command_line(args): # pylint: disable=too-many-locals
build_group.add_option('--with-openmp', default=False, action='store_true',
help='enable use of OpenMP')
- build_group.add_option('--with-cilkplus', default=False, action='store_true',
- help='enable use of Cilk Plus')
link_methods = ['symlink', 'hardlink', 'copy']
build_group.add_option('--link-method', default=None, metavar='METHOD',
@@ -1074,8 +1072,6 @@ class ArchInfo(InfoObject):
if options.with_openmp:
macros.append('TARGET_HAS_OPENMP')
- if options.with_cilkplus:
- macros.append('TARGET_HAS_CILKPLUS')
return macros
@@ -1211,11 +1207,6 @@ class CompilerInfo(InfoObject): # pylint: disable=too-many-instance-attributes
raise UserError('No support for OpenMP for %s' % (self.basename))
abi_link.append(self.mach_abi_linking['openmp'])
- if options.with_cilkplus:
- if 'cilkplus' not in self.mach_abi_linking:
- raise UserError('No support for Cilk Plus for %s' % (self.basename))
- abi_link.append(self.mach_abi_linking['cilkplus'])
-
abi_flags = ' '.join(sorted(abi_link))
if options.cc_abi_flags != '':