forked from ProjectQ-Framework/ProjectQ
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·697 lines (560 loc) · 25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
# -*- coding: utf-8 -*-
# Some of the setup.py code is inspired or copied from SQLAlchemy
# SQLAlchemy was created by Michael Bayer.
# Major contributing authors include:
# - Michael Bayer <[email protected]>
# - Jason Kirtland <[email protected]>
# - Gaetan de Menten <[email protected]>
# - Diana Clarke <[email protected]>
# - Michael Trier <[email protected]>
# - Philip Jenvey <[email protected]>
# - Ants Aasma <[email protected]>
# - Paul Johnston <[email protected]>
# - Jonathan Ellis <[email protected]>
# - Damien Nguyen <[email protected]> (ProjectQ)
# Copyright 2005-2020 SQLAlchemy and ProjectQ authors and contributors (see above)
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
"""Setup.py file."""
import distutils.log
import os
import platform
import subprocess
import sys
import tempfile
from distutils.cmd import Command
from distutils.errors import (
CCompilerError,
CompileError,
DistutilsExecError,
DistutilsPlatformError,
LinkError,
)
from distutils.spawn import find_executable, spawn
from setuptools import Distribution as _Distribution
from setuptools import Extension, setup
from setuptools.command.build_ext import build_ext
# ==============================================================================
# Helper functions and classes
class Pybind11Include: # pylint: disable=too-few-public-methods
"""
Helper class to determine the pybind11 include path.
The purpose of this class is to postpone importing pybind11 until it is actually installed, so that the
``get_include()`` method can be invoked.
"""
def __init__(self, user=False):
"""Initialize a Pybind11Include object."""
self.user = user
def __str__(self):
"""Conversion to string."""
import pybind11 # pylint: disable=import-outside-toplevel
return pybind11.get_include(self.user)
def important_msgs(*msgs):
"""Print an important message."""
print('*' * 75)
for msg in msgs:
print(msg)
print('*' * 75)
def status_msgs(*msgs):
"""Print a status message."""
print('-' * 75)
for msg in msgs:
print('# INFO: ', msg)
print('-' * 75)
def compiler_test(
compiler,
flagname=None,
link_executable=False,
link_shared_lib=False,
include='',
body='',
compile_postargs=None,
link_postargs=None,
): # pylint: disable=too-many-arguments,too-many-branches
"""Return a boolean indicating whether a flag name is supported on the specified compiler."""
fname = None
with tempfile.NamedTemporaryFile('w', suffix='.cpp', delete=False) as temp:
temp.write('{}\nint main (int argc, char **argv) {{ {} return 0; }}'.format(include, body))
fname = temp.name
if compile_postargs is None:
compile_postargs = [flagname] if flagname is not None else None
elif flagname is not None:
compile_postargs.append(flagname)
try:
if compiler.compiler_type == 'msvc':
olderr = os.dup(sys.stderr.fileno())
err = open('err.txt', 'w') # pylint: disable=consider-using-with
os.dup2(err.fileno(), sys.stderr.fileno())
obj_file = compiler.compile([fname], extra_postargs=compile_postargs)
if not os.path.exists(obj_file[0]):
raise RuntimeError('')
if link_executable:
compiler.link_executable(obj_file, os.path.join(tempfile.mkdtemp(), 'test'), extra_postargs=link_postargs)
elif link_shared_lib:
if sys.platform == 'win32':
lib_name = os.path.join(tempfile.mkdtemp(), 'test.dll')
else:
lib_name = os.path.join(tempfile.mkdtemp(), 'test.so')
compiler.link_shared_lib(obj_file, lib_name, extra_postargs=link_postargs)
if compiler.compiler_type == 'msvc':
err.close()
os.dup2(olderr, sys.stderr.fileno())
with open('err.txt', 'r') as err_file:
if err_file.readlines():
raise RuntimeError('')
except (CompileError, LinkError, RuntimeError):
return False
else:
return True
finally:
os.unlink(fname)
def _fix_macosx_header_paths(*args):
# Fix path to SDK headers if necessary
_MACOSX_XCODE_REF_PATH = ( # pylint: disable=invalid-name
'/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer'
)
_MACOSX_DEVTOOLS_REF_PATH = '/Library/Developer/CommandLineTools/' # pylint: disable=invalid-name
_has_xcode = os.path.exists(_MACOSX_XCODE_REF_PATH)
_has_devtools = os.path.exists(_MACOSX_DEVTOOLS_REF_PATH)
if not _has_xcode and not _has_devtools:
important_msgs('ERROR: Must install either Xcode or CommandLineTools!')
raise BuildFailed()
for compiler_args in args:
for idx, item in enumerate(compiler_args):
if not _has_xcode and _MACOSX_XCODE_REF_PATH in item:
compiler_args[idx] = item.replace(_MACOSX_XCODE_REF_PATH, _MACOSX_DEVTOOLS_REF_PATH)
if not _has_devtools and _MACOSX_DEVTOOLS_REF_PATH in item:
compiler_args[idx] = item.replace(_MACOSX_DEVTOOLS_REF_PATH, _MACOSX_XCODE_REF_PATH)
# ------------------------------------------------------------------------------
class BuildFailed(Exception):
"""Extension raised if the build fails for any reason."""
def __init__(self):
"""Initialize a BuildFailed exception object."""
super().__init__()
self.cause = sys.exc_info()[1] # work around py 2/3 different syntax
# ------------------------------------------------------------------------------
# Python build related variable
cpython = platform.python_implementation() == 'CPython'
ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError)
if sys.platform == 'win32':
# 2.6's distutils.msvc9compiler can raise an IOError when failing to
# find the compiler
ext_errors += (IOError,)
# ==============================================================================
# ProjectQ C++ extensions
ext_modules = [
Extension(
'projectq.backends._sim._cppsim',
['projectq/backends/_sim/_cppsim.cpp'],
include_dirs=[
# Path to pybind11 headers
Pybind11Include(),
Pybind11Include(user=True),
],
language='c++',
),
]
# ==============================================================================
class BuildExt(build_ext):
"""A custom build extension for adding compiler-specific options."""
c_opts = {
'msvc': ['/EHsc'],
'unix': [],
}
user_options = build_ext.user_options + [
(
'gen-compiledb',
None,
'Generate a compile_commands.json alongside the compilation implies (-n/--dry-run)',
),
]
boolean_options = build_ext.boolean_options + ['gen-compiledb']
def initialize_options(self):
"""Initialize this command's options."""
build_ext.initialize_options(self)
self.gen_compiledb = None
def finalize_options(self):
"""Finalize this command's options."""
build_ext.finalize_options(self)
if self.gen_compiledb:
self.dry_run = True # pylint: disable=attribute-defined-outside-init
def run(self):
"""Execute this command."""
try:
build_ext.run(self)
except DistutilsPlatformError as err:
raise BuildFailed() from err
def build_extensions(self):
"""Build the individual C/C++ extensions."""
self._configure_compiler()
for ext in self.extensions:
ext.extra_compile_args = self.opts
ext.extra_link_args = self.link_opts
if self.compiler.compiler_type == 'unix' and self.gen_compiledb:
compile_commands = []
for ext in self.extensions:
commands = self._get_compilation_commands(ext)
for cmd, src in commands:
compile_commands.append(
{
'directory': os.path.dirname(os.path.abspath(__file__)),
'command': cmd,
'file': os.path.abspath(src),
}
)
import json # pylint: disable=import-outside-toplevel
with open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), 'compile_commands.json'),
'w',
) as json_file:
json.dump(compile_commands, json_file, sort_keys=True, indent=4)
try:
build_ext.build_extensions(self)
except ext_errors as err:
raise BuildFailed() from err
except ValueError as err:
# this can happen on Windows 64 bit, see Python issue 7511
if "'path'" in str(sys.exc_info()[1]): # works with both py 2/3
raise BuildFailed() from err
raise
def _get_compilation_commands(self, ext):
# pylint: disable=protected-access
(_, objects, extra_postargs, pp_opts, build,) = self.compiler._setup_compile(
outdir=self.build_temp,
sources=ext.sources,
macros=ext.define_macros,
incdirs=ext.include_dirs,
extra=ext.extra_compile_args,
depends=ext.depends,
)
cc_args = self.compiler._get_cc_args(pp_opts=pp_opts, debug=self.debug, before=None)
compiler_so = self.compiler.compiler_so
compiler_so[0] = find_executable(compiler_so[0])
commands = []
for obj in objects:
try:
src, ext = build[obj]
except KeyError:
continue
commands.append(
(
' '.join(
compiler_so + cc_args + [os.path.abspath(src), "-o", os.path.abspath(obj)] + extra_postargs
),
src,
)
)
return commands
def _configure_compiler(self):
# pylint: disable=attribute-defined-outside-init
# Force dry_run = False to allow for compiler feature testing
dry_run_old = self.compiler.dry_run
self.compiler.dry_run = False
if (
int(os.environ.get('PROJECTQ_CLEANUP_COMPILER_FLAGS', 0))
and self.compiler.compiler_type == 'unix'
and sys.platform != 'darwin'
):
self._cleanup_compiler_flags()
if sys.platform == 'darwin':
_fix_macosx_header_paths(self.compiler.compiler, self.compiler.compiler_so)
if compiler_test(self.compiler, '-stdlib=libc++'):
self.c_opts['unix'] += ['-stdlib=libc++']
compiler_type = self.compiler.compiler_type
self.opts = self.c_opts.get(compiler_type, [])
self.link_opts = []
if not compiler_test(self.compiler):
important_msgs(
'ERROR: something is wrong with your C++ compiler.\nFailed to compile a simple test program!'
)
raise BuildFailed()
# ------------------------------
status_msgs('Configuring OpenMP')
self._configure_openmp()
status_msgs('Configuring compiler intrinsics')
self._configure_intrinsics()
status_msgs('Configuring C++ standard')
self._configure_cxx_standard()
# ------------------------------
# Other compiler tests
status_msgs('Other compiler tests')
self.compiler.define_macro('VERSION_INFO', '"{}"'.format(self.distribution.get_version()))
if compiler_type == 'unix' and compiler_test(self.compiler, '-fvisibility=hidden'):
self.opts.append('-fvisibility=hidden')
self.compiler.dry_run = dry_run_old
status_msgs('Finished configuring compiler!')
def _configure_openmp(self):
if self.compiler.compiler_type == 'msvc':
return
kwargs = {
'link_shared_lib': True,
'include': '#include <omp.h>',
'body': 'int a = omp_get_num_threads(); ++a;',
}
for flag in ['-openmp', '-fopenmp', '-qopenmp', '/Qopenmp']:
if compiler_test(self.compiler, flag, link_postargs=[flag], **kwargs):
self.opts.append(flag)
self.link_opts.append(flag)
return
flag = '-fopenmp'
if sys.platform == 'darwin' and compiler_test(self.compiler, flag):
try:
llvm_root = subprocess.check_output(['brew', '--prefix', 'llvm']).decode('utf-8')[:-1]
compiler_root = subprocess.check_output(['which', self.compiler.compiler[0]]).decode('utf-8')[:-1]
# Only add the flag if the compiler we are using is the one
# from HomeBrew
if llvm_root in compiler_root:
l_arg = '-L{}/lib'.format(llvm_root)
if compiler_test(self.compiler, flag, link_postargs=[l_arg, flag], **kwargs):
self.opts.append(flag)
self.link_opts.extend((l_arg, flag))
return
except subprocess.CalledProcessError:
pass
try:
# Only relevant for MacPorts users with clang-3.7
port_path = subprocess.check_output(['which', 'port']).decode('utf-8')[:-1]
macports_root = os.path.dirname(os.path.dirname(port_path))
compiler_root = subprocess.check_output(['which', self.compiler.compiler[0]]).decode('utf-8')[:-1]
# Only add the flag if the compiler we are using is the one
# from MacPorts
if macports_root in compiler_root:
inc_dir = '{}/include/libomp'.format(macports_root)
lib_dir = '{}/lib/libomp'.format(macports_root)
c_arg = '-I' + inc_dir
l_arg = '-L' + lib_dir
if compiler_test(self.compiler, flag, compile_postargs=[c_arg], link_postargs=[l_arg], **kwargs):
self.compiler.add_include_dir(inc_dir)
self.compiler.add_library_dir(lib_dir)
return
except subprocess.CalledProcessError:
pass
important_msgs('WARNING: compiler does not support OpenMP!')
def _configure_intrinsics(self):
flags = [
'-march=native',
'-mavx2',
'/arch:AVX2',
'/arch:CORE-AVX2',
'/arch:AVX',
]
if os.environ.get('PROJECTQ_DISABLE_ARCH_NATIVE'):
flags = flags[1:]
for flag in flags:
if compiler_test(
self.compiler,
flagname=flag,
include='#include <immintrin.h>',
body='__m256d neg = _mm256_set1_pd(1.0); (void)neg;',
):
self.opts.append(flag)
self.compiler.define_macro("INTRIN")
break
for flag in ['-ffast-math', '-fast', '/fast', '/fp:precise']:
if compiler_test(self.compiler, flagname=flag):
self.opts.append(flag)
break
def _configure_cxx_standard(self):
if self.compiler.compiler_type == 'msvc':
return
cxx_standards = [17, 14, 11]
if sys.version_info[0] < 3:
cxx_standards = [year for year in cxx_standards if year < 17]
if sys.platform == 'darwin':
major_version = int(platform.mac_ver()[0].split('.')[0])
minor_version = int(platform.mac_ver()[0].split('.')[1])
if major_version <= 10 and minor_version < 14:
cxx_standards = [year for year in cxx_standards if year < 17]
for year in cxx_standards:
flag = '-std=c++{}'.format(year)
if compiler_test(self.compiler, flag):
self.opts.append(flag)
return
flag = '/Qstd=c++{}'.format(year)
if compiler_test(self.compiler, flag):
self.opts.append(flag)
return
important_msgs('ERROR: compiler needs to have at least C++11 support!')
raise BuildFailed()
def _cleanup_compiler_flags(self):
status_msgs('INFO: Performing compiler flags cleanup')
compiler_exe = self.compiler.compiler[0]
compiler_exe_so = self.compiler.compiler_so[0]
linker_so = self.compiler.linker_so[0]
compiler_flags = set(self.compiler.compiler[1:])
compiler_so_flags = set(self.compiler.compiler_so[1:])
linker_so_flags = set(self.compiler.linker_so[1:])
all_common_flags = compiler_flags & compiler_so_flags & linker_so_flags
common_compiler_flags = (compiler_flags & compiler_so_flags) - all_common_flags
compiler_flags = compiler_flags - common_compiler_flags - all_common_flags
compiler_so_flags = compiler_so_flags - common_compiler_flags - all_common_flags
flags = []
for flag in common_compiler_flags:
compiler = type(self.compiler)()
compiler.set_executables(compiler=compiler_exe, compiler_so=compiler_exe_so, linker_so=linker_so)
compiler.debug_print(f'INFO: trying out {flag}')
if compiler_test(compiler, flag, link_shared_lib=True, compile_postargs=['-fPIC']):
flags.append(flag)
else:
important_msgs('WARNING: ignoring unsupported compiler flag: {}'.format(flag))
self.compiler.compiler = [compiler_exe] + list(compiler_flags)
self.compiler.compiler_so = [compiler_exe_so] + list(compiler_so_flags)
self.compiler.linker_so = [linker_so] + list(linker_so_flags - all_common_flags)
self.compiler.compiler.extend(flags)
self.compiler.compiler_so.extend(flags)
flags = []
for flag in all_common_flags:
if compiler_test(self.compiler, flag):
flags.append(flag)
else:
important_msgs('WARNING: ignoring unsupported compiler flag: {}'.format(flag))
self.compiler.compiler.extend(flags)
self.compiler.compiler_so.extend(flags)
self.compiler.linker_so.extend(flags)
# ------------------------------------------------------------------------------
class ClangTidy(Command):
"""A custom command to run Clang-Tidy on all C/C++ source files."""
description = 'run Clang-Tidy on all C/C++ source files'
user_options = [('warning-as-errors', None, 'Warning as errors')]
boolean_options = ['warning-as-errors']
sub_commands = [('build_ext', None)]
def initialize_options(self):
"""Initialize this command's options."""
self.warning_as_errors = None
def finalize_options(self):
"""Finalize this command's options."""
def run(self):
"""Execute this command."""
# Ideally we would use self.run_command(command) but we need to ensure
# that --dry-run --gen-compiledb are passed to build_ext regardless of
# other arguments
command = 'build_ext'
distutils.log.info("running %s --dry-run --gen-compiledb", command)
cmd_obj = self.get_finalized_command(command)
cmd_obj.dry_run = True
cmd_obj.gen_compiledb = True
try:
cmd_obj.run()
self.distribution.have_run[command] = 1
except BuildFailed as err:
distutils.log.error('build_ext --dry-run --gen-compiledb command failed!')
raise RuntimeError('build_ext --dry-run --gen-compiledb command failed!') from err
command = ['clang-tidy']
if self.warning_as_errors:
command.append('--warnings-as-errors=*')
for ext in self.distribution.ext_modules:
command.extend(os.path.abspath(p) for p in ext.sources)
spawn(command, dry_run=self.dry_run)
# ------------------------------------------------------------------------------
class GenerateRequirementFile(Command):
"""A custom command to list the dependencies of the current."""
description = 'List the dependencies of the current package'
user_options = [
('include-all-extras', None, 'Include all "extras_require" into the list'),
('include-extras=', None, 'Include some of extras_requires into the list (comma separated)'),
]
boolean_options = ['include-all-extras']
def initialize_options(self):
"""Initialize this command's options."""
self.include_extras = None
self.include_all_extras = None
self.extra_pkgs = []
def finalize_options(self):
"""Finalize this command's options."""
include_extras = self.include_extras.split(',') if self.include_extras else []
try:
for name, pkgs in self.distribution.extras_require.items():
if self.include_all_extras or name in include_extras:
self.extra_pkgs.extend(pkgs)
except TypeError: # Mostly for old setuptools (< 30.x)
for name, pkgs in self.distribution.command_options['options.extras_require'].items():
if self.include_all_extras or name in include_extras:
self.extra_pkgs.extend(pkgs)
def run(self):
"""Execute this command."""
with open('requirements.txt', 'w') as req_file:
try:
for pkg in self.distribution.install_requires:
req_file.write('{}\n'.format(pkg))
except TypeError: # Mostly for old setuptools (< 30.x)
for pkg in self.distribution.command_options['options']['install_requires']:
req_file.write('{}\n'.format(pkg))
req_file.write('\n')
for pkg in self.extra_pkgs:
req_file.write('{}\n'.format(pkg))
# ------------------------------------------------------------------------------
class Distribution(_Distribution):
"""Distribution class."""
def has_ext_modules(self): # pylint: disable=no-self-use
"""Return whether this distribution has some external modules."""
# We want to always claim that we have ext_modules. This will be fine
# if we don't actually have them (such as on PyPy) because nothing
# will get built, however we don't want to provide an overally broad
# Wheel package when building a wheel without C support. This will
# ensure that Wheel knows to treat us as if the build output is
# platform specific.
return True
# ==============================================================================
def run_setup(with_cext):
"""Run the setup() function."""
kwargs = {}
if with_cext:
kwargs['ext_modules'] = ext_modules
else:
kwargs['ext_modules'] = []
setup(
use_scm_version={'local_scheme': 'no-local-version'},
setup_requires=['setuptools_scm'],
cmdclass={
'build_ext': BuildExt,
'clang_tidy': ClangTidy,
'gen_reqfile': GenerateRequirementFile,
},
distclass=Distribution,
**kwargs,
)
# ==============================================================================
if not cpython:
run_setup(False)
important_msgs(
'WARNING: C/C++ extensions are not supported on some features are disabled (e.g. C++ simulator).',
'Plain-Python build succeeded.',
)
elif os.environ.get('PROJECTQ_DISABLE_CEXT'):
run_setup(False)
important_msgs(
'PROJECTQ_DISABLE_CEXT is set; not attempting to build C/C++ extensions.',
'Plain-Python build succeeded.',
)
else:
try:
run_setup(True)
except BuildFailed as exc:
if os.environ.get('PROJECTQ_CI_BUILD'):
raise exc
important_msgs(
exc.cause,
'WARNING: Some C/C++ extensions could not be compiled, '
+ 'some features are disabled (e.g. C++ simulator).',
'Failure information, if any, is above.',
'Retrying the build without the C/C++ extensions now.',
)
run_setup(False)
important_msgs(
'WARNING: Some C/C++ extensions could not be compiled, '
+ 'some features are disabled (e.g. C++ simulator).',
'Plain-Python build succeeded.',
)