-
-
Notifications
You must be signed in to change notification settings - Fork 529
/
Copy pathsetup.py
executable file
·905 lines (737 loc) · 33.4 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
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import time
import errno
import subprocess
import json
from distutils import log
from distutils.core import setup
from distutils.cmd import Command
from distutils.command.build import build
from distutils.command.build_ext import build_ext
from distutils.command.install import install
from distutils.dep_util import newer_group
from distutils.errors import (DistutilsSetupError, DistutilsModuleError,
DistutilsOptionError)
# This import allows instancemethods to be pickable
import fpickle_setup
def excepthook(*exc):
"""
When an error occurs, display an error message similar to the error
messages from ``sage-spkg``.
In particular, ``build/make/install`` will recognize "sage" as a failed
package, see :trac:`16774`.
"""
stars = '*' * 72
print(stars, file=sys.stderr)
import traceback
traceback.print_exception(*exc, file=sys.stderr)
print(stars, file=sys.stderr)
print("Error building the Sage library", file=sys.stderr)
print(stars, file=sys.stderr)
try:
logfile = os.path.join(os.environ['SAGE_LOGS'],
"sagelib-%s.log" % os.environ['SAGE_VERSION'])
except Exception:
pass
else:
print("Please email sage-devel (http://groups.google.com/group/sage-devel)", file=sys.stderr)
print("explaining the problem and including the relevant part of the log file", file=sys.stderr)
print(" " + logfile, file=sys.stderr)
print("Describe your computer, operating system, etc.", file=sys.stderr)
print(stars, file=sys.stderr)
sys.excepthook = excepthook
#########################################################
### Set source directory
#########################################################
import sage.env
sage.env.SAGE_SRC = os.getcwd()
from sage.env import *
#########################################################
### List of Extensions
###
### The list of extensions resides in module_list.py in
### the same directory as this file
#########################################################
from module_list import ext_modules, library_order
from sage_setup.find import find_extra_files
#########################################################
### Configuration
#########################################################
if len(sys.argv) > 1 and sys.argv[1] == "sdist":
sdist = True
else:
sdist = False
keep_going = False
# search for dependencies and add to gcc -I<path>
include_dirs = sage_include_directories(use_sources=True)
# Look for libraries in $SAGE_LOCAL/lib
library_dirs = [os.path.join(SAGE_LOCAL, "lib")]
# Manually add -fno-strict-aliasing, which is needed to compile Cython
# and disappears from the default flags if the user has set CFLAGS.
#
# Add -DCYTHON_CLINE_IN_TRACEBACK=1 which causes the .c line number to
# always appear in exception tracebacks (by default, this is a runtime
# setting in Cython which causes some overhead every time an exception
# is raised).
extra_compile_args = ["-fno-strict-aliasing", "-DCYTHON_CLINE_IN_TRACEBACK=1"]
extra_link_args = [ ]
DEVEL = False
if DEVEL:
extra_compile_args.append('-ggdb')
# Work around GCC-4.8 bug which miscompiles some sig_on() statements:
# * http://trac.sagemath.org/sage_trac/ticket/14460
# * http://trac.sagemath.org/sage_trac/ticket/20226
# * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56982
if subprocess.call("""$CC --version | grep -i 'gcc.* 4[.]8' >/dev/null """, shell=True) == 0:
extra_compile_args.append('-fno-tree-copyrename')
#########################################################
### Testing related stuff
#########################################################
# Remove (potentially invalid) star import caches
import sage.misc.lazy_import_cache
if os.path.exists(sage.misc.lazy_import_cache.get_cache_file()):
os.unlink(sage.misc.lazy_import_cache.get_cache_file())
########################################################################
##
## Customize the Extensions processed by Cython
##
########################################################################
from Cython.Build.Dependencies import default_create_extension
from sage_setup.util import stable_uniq, have_module
# Do not put all, but only the most common libraries and their headers
# (that are likely to change on an upgrade) here:
# [At least at the moment. Make sure the headers aren't copied with "-p",
# or explicitly touch them in the respective spkg's spkg-install.]
lib_headers = { "gmp": [ os.path.join(SAGE_INC, 'gmp.h') ], # cf. #8664, #9896
"gmpxx": [ os.path.join(SAGE_INC, 'gmpxx.h') ],
"ntl": [ os.path.join(SAGE_INC, 'NTL', 'config.h') ]
}
class sage_build_cython(Command):
name = 'build_cython'
description = "compile Cython extensions into C/C++ extensions"
user_options = [
# TODO: Temporarily disabled since the value for this option is
# hard-coded; change as part of work on #21525
#('build-dir=', 'd',
# "directory for compiled C/C++ sources and header files"),
('profile', 'p',
"enable Cython profiling support"),
('parallel=', 'j',
"run cythonize in parallel with N processes"),
('force=', 'f',
"force files to be cythonized even if the are not changed")
]
boolean_options = ['debug', 'profile', 'force']
def initialize_options(self):
self.extensions = None
self.build_base = None
self.build_dir = None
# Always have Cython produce debugging info by default, unless
# SAGE_DEBUG=no explicitly
self.debug = True
self.profile = None
self.parallel = None
self.force = None
self.cython_directives = None
self.compile_time_env = None
self.build_lib = None
self.cythonized_files = None
def finalize_options(self):
self.extensions = self.distribution.ext_modules
# Let Cython generate its files in the "cythonized"
# subdirectory of the build_base directory.
self.set_undefined_options('build', ('build_base', 'build_base'))
self.build_dir = os.path.join(self.build_base, "cythonized")
# Inherit some options from the 'build_ext' command if possible
# (this in turn implies inheritance from the 'build' command)
inherit_opts = [('build_lib', 'build_lib'),
('debug', 'debug'),
('force', 'force')]
# Python 3.5 now has a parallel option as well
if sys.version_info[:2] >= (3, 5):
inherit_opts.append(('parallel', 'parallel'))
self.set_undefined_options('build_ext', *inherit_opts)
# Always produce debugging output unless SAGE_DEBUG=no is given
# explicitly
self.debug = os.environ.get('SAGE_DEBUG', None) != 'no'
if self.debug:
log.info('Enabling Cython debugging support')
if self.profile is None:
self.profile = os.environ.get('SAGE_PROFILE') == 'yes'
if self.profile:
log.info('Enabling Cython profiling support')
if self.parallel is None:
self.parallel = os.environ.get('SAGE_NUM_THREADS', '0')
try:
self.parallel = int(self.parallel)
except ValueError:
raise DistutilsOptionError("parallel should be an integer")
try:
import Cython
except ImportError:
raise DistutilsModuleError(
"Cython must be installed and importable in order to run "
"the cythonize command")
# Cython compiler directives
self.cython_directives = dict(
auto_pickle=False,
autotestdict=False,
cdivision=True,
embedsignature=True,
fast_getattr=True,
language_level="2",
preliminary_late_includes_cy28=True,
profile=self.profile,
)
self.compile_time_env = dict(
PY_VERSION_HEX=sys.hexversion,
PY_MAJOR_VERSION=sys.version_info[0],
)
# We check the Cython version and some relevant configuration
# options from the earlier build to see if we need to force a
# recythonization. If the version or options have changed, we
# must recythonize all files.
self._version_file = os.path.join(self.build_dir, '.cython_version')
self._version_stamp = json.dumps({
'version': Cython.__version__,
'debug': self.debug,
'directives': self.cython_directives,
'compile_time_env': self.compile_time_env,
}, sort_keys=True)
# Read an already written version file if it exists and compare to the
# current version stamp
try:
if open(self._version_file).read() == self._version_stamp:
force = False
else:
# version_file exists but its contents are not what we
# want => recythonize all Cython code.
force = True
# In case this cythonization is interrupted, we end up
# in an inconsistent state with C code generated by
# different Cython versions or with different options.
# To ensure that this inconsistent state will be fixed,
# we remove the version_file now to force a
# recythonization the next time we build Sage.
os.unlink(self._version_file)
except IOError:
# Most likely, the version_file does not exist
# => (re)cythonize all Cython code.
force = True
# If the --force flag was given at the command line, always force;
# otherwise use what we determined from reading the version file
if self.force is None:
self.force = force
def get_cythonized_package_files(self):
"""
Return a list of files found in the Sage sources and/or Cythonize
output directory that should be installed with Python packages (a la
``package_files``).
"""
if self.cythonized_files is not None:
return self.cythonized_files
self.cythonized_files = list(find_extra_files(
".", ["sage"], self.build_dir, []).items())
return self.cythonized_files
def run(self):
"""
Call ``cythonize()`` to replace the ``ext_modules`` with the
extensions containing Cython-generated C code.
"""
from Cython.Build import cythonize
import Cython.Compiler.Options
Cython.Compiler.Options.embed_pos_in_docstring = True
log.info("Updating Cython code....")
t = time.time()
extensions = cythonize(
self.extensions,
nthreads=self.parallel,
build_dir=self.build_dir,
force=self.force,
aliases=cython_aliases(),
compiler_directives=self.cython_directives,
compile_time_env=self.compile_time_env,
create_extension=self.create_extension,
# Debugging
gdb_debug=self.debug,
output_dir=os.path.join(self.build_lib, "sage"),
# Disable Cython caching, which is currently too broken to
# use reliably: http://trac.sagemath.org/ticket/17851
cache=False,
)
# Filter out extensions with skip_build=True
extensions = [ext for ext in extensions if not getattr(ext, "skip_build", False)]
# We use [:] to change the list in-place because the same list
# object is pointed to from different places.
self.extensions[:] = extensions
log.info("Finished Cythonizing, time: %.2f seconds." % (time.time() - t))
with open(self._version_file, 'w') as f:
f.write(self._version_stamp)
# Finally, copy relevant cythonized files from build/cythonized
# tree into the build-lib tree
for (dst_dir, src_files) in self.get_cythonized_package_files():
dst = os.path.join(self.build_lib, dst_dir)
self.mkpath(dst)
for src in src_files:
self.copy_file(src, dst, preserve_mode=False)
def create_extension(self, template, kwds):
"""
Create a distutils Extension given data from Cython.
This adjust the ``kwds`` in the following ways:
- Make everything depend on *this* setup.py file
- Add dependencies on header files for certain libraries
- Ensure that C++ extensions link with -lstdc++
- Sort the libraries according to the library order
- Add some default compile/link args and directories
- Choose C99 standard for C code and C++11 for C++ code
- Drop -std=c99 and similar from C++ extensions
- Ensure that each flag, library, ... is listed at most once
"""
lang = kwds.get('language', 'c')
cplusplus = (lang == "c++")
# Libraries: add stdc++ if needed and sort them
libs = kwds.get('libraries', [])
if cplusplus:
libs = libs + ['stdc++']
kwds['libraries'] = sorted(set(libs),
key=lambda lib: library_order.get(lib, 0))
# Dependencies: add setup.py and lib_headers
depends = kwds.get('depends', []) + [__file__]
for lib, headers in lib_headers.items():
if lib in libs:
depends += headers
kwds['depends'] = depends # These are sorted and uniq'ed by Cython
# Process extra_compile_args
cflags = []
have_std_flag = False
for flag in kwds.get('extra_compile_args', []):
if flag.startswith("-std="):
if cplusplus and "++" not in flag:
continue # Skip -std=c99 and similar for C++
have_std_flag = True
cflags.append(flag)
if not have_std_flag: # See Trac #23919
if sys.platform == 'cygwin':
# Cygwin (particularly newlib, Cygwin's libc) has some bugs
# with strict ANSI C/C++ in some headers; using the GNU
# extensions typically fares better:
# https://trac.sagemath.org/ticket/24192
if cplusplus:
cflags.append("-std=gnu++11")
else:
cflags.append("-std=gnu99")
else:
if cplusplus:
cflags.append("-std=c++11")
else:
cflags.append("-std=c99")
cflags = extra_compile_args + cflags
kwds['extra_compile_args'] = stable_uniq(cflags)
# Process extra_link_args
ldflags = kwds.get('extra_link_args', []) + extra_link_args
kwds['extra_link_args'] = stable_uniq(ldflags)
# Process library_dirs
lib_dirs = kwds.get('library_dirs', []) + library_dirs
kwds['library_dirs'] = stable_uniq(lib_dirs)
# Process include_dirs
inc_dirs = kwds.get('include_dirs', []) + include_dirs + [self.build_dir]
kwds['include_dirs'] = stable_uniq(inc_dirs)
return default_create_extension(template, kwds)
########################################################################
##
## Parallel gcc execution
##
## This code is responsible for making distutils dispatch the calls to
## build_ext in parallel. Since distutils doesn't seem to do this by
## default, we create our own extension builder and override the
## appropriate methods. Unfortunately, in distutils, the logic of
## deciding whether an extension needs to be recompiled and actually
## making the call to gcc to recompile the extension are in the same
## function. As a result, we can't just override one function and have
## everything magically work. Instead, we split this work between two
## functions. This works fine for our application, but it means that
## we can't use this modification to make the other parts of Sage that
## build with distutils call gcc in parallel.
##
########################################################################
def run_command(cmd):
"""
INPUT:
- ``cmd`` -- a string; a command to run
OUTPUT: prints ``cmd`` to the console and then runs
``os.system(cmd)``.
"""
print(cmd)
sys.stdout.flush()
return os.system(cmd)
def apply_func_progress(p):
"""
Given a triple p consisting of a function, value and a string,
output the string and apply the function to the value.
The string could for example be some progress indicator.
This exists solely because we can't pickle an anonymous function
in execute_list_of_commands_in_parallel below.
"""
sys.stdout.write(p[2])
sys.stdout.flush()
return p[0](p[1])
def execute_list_of_commands_in_parallel(command_list, nthreads):
"""
Execute the given list of commands, possibly in parallel, using
``nthreads`` threads. Terminates ``setup.py`` with an exit code
of 1 if an error occurs in any subcommand.
INPUT:
- ``command_list`` -- a list of commands, each given as a pair of
the form ``[function, argument]`` of a function to call and its
argument
- ``nthreads`` -- integer; number of threads to use
WARNING: commands are run roughly in order, but of course successive
commands may be run at the same time.
"""
# Add progress indicator strings to the command_list
N = len(command_list)
progress_fmt = "[{:%i}/{}] " % len(str(N))
for i in range(N):
progress = progress_fmt.format(i+1, N)
command_list[i] = command_list[i] + (progress,)
from multiprocessing import Pool
# map_async handles KeyboardInterrupt correctly if an argument is
# given to get(). Plain map() and apply_async() do not work
# correctly, see Trac #16113.
pool = Pool(nthreads)
result = pool.map_async(apply_func_progress, command_list, 1).get(99999)
pool.close()
pool.join()
process_command_results(result)
def process_command_results(result_values):
error = None
for r in result_values:
if r:
print("Error running command, failed with status %s."%r)
if not keep_going:
sys.exit(1)
error = r
if error:
sys.exit(1)
def execute_list_of_commands(command_list):
"""
INPUT:
- ``command_list`` -- a list of strings or pairs
OUTPUT:
For each entry in command_list, we attempt to run the command.
If it is a string, we call ``os.system()``. If it is a pair [f, v],
we call f(v).
If the environment variable :envvar:`SAGE_NUM_THREADS` is set, use
that many threads.
"""
t = time.time()
# Determine the number of threads from the environment variable
# SAGE_NUM_THREADS, which is set automatically by sage-env
try:
nthreads = int(os.environ['SAGE_NUM_THREADS'])
except KeyError:
nthreads = 1
# normalize the command_list to handle strings correctly
command_list = [ [run_command, x] if isinstance(x, str) else x for x in command_list ]
# No need for more threads than there are commands, but at least one
nthreads = min(len(command_list), nthreads)
nthreads = max(1, nthreads)
def plural(n,noun):
if n == 1:
return "1 %s"%noun
return "%i %ss"%(n,noun)
print("Executing %s (using %s)"%(plural(len(command_list),"command"), plural(nthreads,"thread")))
execute_list_of_commands_in_parallel(command_list, nthreads)
print("Time to execute %s: %.2f seconds."%(plural(len(command_list),"command"), time.time() - t))
class sage_build_ext(build_ext):
def finalize_options(self):
build_ext.finalize_options(self)
self.check_flags()
def run(self):
# Always run the Cythonize command before building extensions
self.run_command('build_cython')
build_ext.run(self)
def check_flags(self):
"""
Sanity check the compiler flags used to build the extensions
"""
forbidden = None
if os.environ.get("SAGE_FAT_BINARY") == "yes":
# When building with SAGE_FAT_BINARY=yes, we should not
# enable CPU features which do not exist on every CPU.
# Such flags usually come from other libraries adding the
# flags to the pkgconfig configuration. So if you hit these
# errors, the problem is most likely with some external
# library and not with Sage.
import re
forbidden = re.compile(r"-march=|-mpcu=|-msse3|-msse4|-mpopcnt|-mavx")
if forbidden is not None:
errors = 0
for ext in self.extensions:
flags = ext.extra_compile_args
for flag in flags:
if forbidden.match(flag):
log.error("%s uses forbidden flag '%s'", ext.name, flag)
errors += 1
if errors:
raise RuntimeError("forbidden flags used")
def build_extensions(self):
from distutils.debug import DEBUG
if DEBUG:
print("self.compiler.compiler:")
print(self.compiler.compiler)
print("self.compiler.compiler_cxx:")
print(self.compiler.compiler_cxx) # currently not used
print("self.compiler.compiler_so:")
print(self.compiler.compiler_so)
print("self.compiler.linker_so:")
print(self.compiler.linker_so)
# There are further interesting variables...
# At least on MacOS X, the library dir of the *original* Sage
# installation is "hard-coded" into the linker *command*, s.t.
# that directory is always searched *first*, which causes trouble
# after the Sage installation has been moved (or its directory simply
# been renamed), especially in conjunction with upgrades (cf. #9896).
# (In principle, the Python configuration should be modified on
# Sage relocations as well, but until that's done, we simply fix
# the most important.)
# Since the following is performed only once per call to "setup",
# and doesn't hurt on other systems, we unconditionally replace *any*
# library directory specified in the (dynamic) linker command by the
# current Sage library directory (if it doesn't already match that),
# and issue a warning message:
if True or sys.platform[:6]=="darwin":
sage_libdir = os.path.realpath(SAGE_LOCAL+"/lib")
ldso_cmd = self.compiler.linker_so # a list of strings, like argv
for i in range(1, len(ldso_cmd)):
if ldso_cmd[i][:2] == "-L":
libdir = os.path.realpath(ldso_cmd[i][2:])
self.debug_print(
"Library dir found in dynamic linker command: " +
"\"%s\"" % libdir)
if libdir != sage_libdir:
self.compiler.warn(
"Replacing library search directory in linker " +
"command:\n \"%s\" -> \"%s\"\n" % (libdir,
sage_libdir))
ldso_cmd[i] = "-L"+sage_libdir
if DEBUG:
print("self.compiler.linker_so (after fixing library dirs):")
print(self.compiler.linker_so)
# First, sanity-check the 'extensions' list
self.check_extensions_list(self.extensions)
import time
t = time.time()
compile_commands = []
for ext in self.extensions:
need_to_compile, p = self.prepare_extension(ext)
if need_to_compile:
compile_commands.append((self.build_extension, p))
execute_list_of_commands(compile_commands)
print("Total time spent compiling C/C++ extensions: %.2f seconds." % (time.time() - t))
def prepare_extension(self, ext):
sources = ext.sources
if sources is None or not isinstance(sources, (list, tuple)):
raise DistutilsSetupError(("in 'ext_modules' option (extension '%s'), " +
"'sources' must be present and must be " +
"a list of source filenames") % ext.name)
sources = list(sources)
fullname = self.get_ext_fullname(ext.name)
if self.inplace:
# ignore build-lib -- put the compiled extension into
# the source tree along with pure Python modules
modpath = fullname.split('.')
package = '.'.join(modpath[0:-1])
base = modpath[-1]
build_py = self.get_finalized_command('build_py')
package_dir = build_py.get_package_dir(package)
ext_filename = os.path.join(package_dir,
self.get_ext_filename(base))
relative_ext_filename = self.get_ext_filename(base)
else:
ext_filename = os.path.join(self.build_lib,
self.get_ext_filename(fullname))
relative_ext_filename = self.get_ext_filename(fullname)
# while dispatching the calls to gcc in parallel, we sometimes
# hit a race condition where two separate build_ext objects
# try to create a given directory at the same time; whoever
# loses the race then seems to throw an error, saying that
# the directory already exists. so, instead of fighting to
# fix the race condition, we simply make sure the entire
# directory tree exists now, while we're processing the
# extensions in serial.
relative_ext_dir = os.path.split(relative_ext_filename)[0]
prefixes = ['', self.build_lib, self.build_temp]
for prefix in prefixes:
path = os.path.join(prefix, relative_ext_dir)
try:
os.makedirs(path)
except OSError as e:
assert e.errno==errno.EEXIST, 'Cannot create %s.' % path
depends = sources + ext.depends
if not (self.force or newer_group(depends, ext_filename, 'newer')):
log.debug("skipping '%s' extension (up-to-date)", ext.name)
need_to_compile = False
else:
log.info("building '%s' extension", ext.name)
need_to_compile = True
return need_to_compile, (sources, ext, ext_filename)
def build_extension(self, p):
sources, ext, ext_filename = p
# First, scan the sources for SWIG definition files (.i), run
# SWIG on 'em to create .c files, and modify the sources list
# accordingly.
sources = self.swig_sources(sources, ext)
# Next, compile the source code to object files.
# XXX not honouring 'define_macros' or 'undef_macros' -- the
# CCompiler API needs to change to accommodate this, and I
# want to do one thing at a time!
# Two possible sources for extra compiler arguments:
# - 'extra_compile_args' in Extension object
# - CFLAGS environment variable (not particularly
# elegant, but people seem to expect it and I
# guess it's useful)
# The environment variable should take precedence, and
# any sensible compiler will give precedence to later
# command line args. Hence we combine them in order:
extra_args = ext.extra_compile_args or []
macros = ext.define_macros[:]
for undef in ext.undef_macros:
macros.append((undef,))
objects = self.compiler.compile(sources,
output_dir=self.build_temp,
macros=macros,
include_dirs=ext.include_dirs,
debug=self.debug,
extra_postargs=extra_args,
depends=ext.depends)
# XXX -- this is a Vile HACK!
#
# The setup.py script for Python on Unix needs to be able to
# get this list so it can perform all the clean up needed to
# avoid keeping object files around when cleaning out a failed
# build of an extension module. Since Distutils does not
# track dependencies, we have to get rid of intermediates to
# ensure all the intermediates will be properly re-built.
#
self._built_objects = objects[:]
# Now link the object files together into a "shared object" --
# of course, first we have to figure out all the other things
# that go into the mix.
if ext.extra_objects:
objects.extend(ext.extra_objects)
extra_args = ext.extra_link_args or []
# Detect target language, if not provided
language = ext.language or self.compiler.detect_language(sources)
self.compiler.link_shared_object(
objects, ext_filename,
libraries=self.get_libraries(ext),
library_dirs=ext.library_dirs,
runtime_library_dirs=ext.runtime_library_dirs,
extra_postargs=extra_args,
export_symbols=self.get_export_symbols(ext),
debug=self.debug,
build_temp=self.build_temp,
target_lang=language)
class sage_build(build):
sub_commands = [('build_cython', lambda *args: True)] + build.sub_commands
def run_autogen(self):
"""
Generate auto-generated sources.
This must be done before building the python modules,
see :trac:`22106`.
"""
from sage_setup.autogen import autogen_all
log.info("Generating auto-generated sources")
for pkg in autogen_all():
if pkg not in self.distribution.packages:
self.distribution.packages.append(pkg)
def run(self):
self.run_autogen()
build.run(self)
#########################################################
### Discovering Sources
#########################################################
# TODO: This should be quiet by default
print("Discovering Python/Cython source code....")
t = time.time()
from sage_setup.find import find_python_sources
python_packages, python_modules = find_python_sources(
SAGE_SRC, ['sage', 'sage_setup'])
log.debug('python_packages = {0}'.format(python_packages))
print("Discovered Python/Cython sources, time: %.2f seconds." % (time.time() - t))
#########################################################
### Install Jupyter kernel spec and clean stale files
#########################################################
class sage_install(install):
def run(self):
install.run(self)
self.install_kernel_spec()
log.info('Cleaning up stale installed files....')
t = time.time()
self.clean_stale_files()
log.info('Finished cleaning, time: %.2f seconds.' % (time.time() - t))
def install_kernel_spec(self):
"""
Install the Jupyter kernel spec.
.. NOTE::
The files are generated, not copied. Therefore, we cannot
use ``data_files`` for this.
"""
from sage.repl.ipython_kernel.install import SageKernelSpec
# Jupyter packages typically use the data_files option to
# setup() to install kernels and nbextensions. So we should use
# the install_data directory for installing our Jupyter files.
SageKernelSpec.update(prefix=self.install_data)
def clean_stale_files(self):
"""
Remove stale installed files.
This removes files which are built/installed but which do not
exist in the Sage sources (typically because some source file
has been deleted). Files are removed from the build directory
``build/lib-*`` and from the install directory ``site-packages``.
"""
dist = self.distribution
cmd_build_py = self.get_finalized_command("build_py")
cmd_build_cython = self.get_finalized_command("build_cython")
# Determine all Python modules inside all packages
py_modules = []
for package in dist.packages:
package_dir = cmd_build_py.get_package_dir(package)
py_modules += cmd_build_py.find_package_modules(package, package_dir)
# modules is a list of triples (package, module, module_file).
# Construct the complete module name from this.
py_modules = ["{0}.{1}".format(*m) for m in py_modules]
# Clean install directory (usually, purelib and platlib are the same)
# and build directory.
output_dirs = [self.install_purelib, self.install_platlib, self.build_lib]
from sage_setup.clean import clean_install_dir
for output_dir in set(output_dirs):
log.info('- cleaning {0}'.format(output_dir))
clean_install_dir(output_dir,
dist.packages,
py_modules,
dist.ext_modules,
cmd_build_cython.get_cythonized_package_files())
#########################################################
### Distutils
#########################################################
code = setup(name = 'sage',
version = SAGE_VERSION,
description = 'Sage: Open Source Mathematics Software',
license = 'GNU Public License (GPL)',
author = 'William Stein et al.',
author_email= 'http://groups.google.com/group/sage-support',
url = 'http://www.sagemath.org',
packages = python_packages,
package_data = {
'sage.libs.gap': ['sage.gaprc'],
},
cmdclass = dict(build=sage_build,
build_cython=sage_build_cython,
build_ext=sage_build_ext,
install=sage_install),
ext_modules = ext_modules)