aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-04 11:25:49 -0400
committerJack Lloyd <[email protected]>2017-09-08 21:16:21 -0400
commit70d11a5e28290e7327beba8f804ed33bd2c9d08c (patch)
treeb60d3664b1b2e47830d9940aa8e58017d7f759af /configure.py
parenta0273956a678b90bbd70da083b6cdafb2d9d6558 (diff)
Script the Windows CI build
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.py b/configure.py
index 121bef0af..2b64798d3 100755
--- a/configure.py
+++ b/configure.py
@@ -1131,22 +1131,22 @@ class CompilerInfo(InfoObject): # pylint: disable=too-many-instance-attributes
if options.with_coverage_info:
if self.coverage_flags == '':
- raise InternalError('No coverage handling for %s' % (self.basename))
+ raise UserError('No coverage handling for %s' % (self.basename))
abi_link.append(self.coverage_flags)
if options.with_sanitizers:
if self.sanitizer_flags == '':
- raise InternalError('No sanitizer handling for %s' % (self.basename))
+ raise UserError('No sanitizer handling for %s' % (self.basename))
abi_link.append(self.sanitizer_flags)
if options.with_openmp:
if 'openmp' not in self.mach_abi_linking:
- raise InternalError('No support for OpenMP for %s' % (self.basename))
+ 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 InternalError('No support for Cilk Plus for %s' % (self.basename))
+ 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))