-
Notifications
You must be signed in to change notification settings - Fork 7
/
customize.py
57 lines (41 loc) · 1.07 KB
/
customize.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
#User provided customizations for the gpaw setup
#Here, one can override the default arguments, or append own
#arguments to default ones
#To override use the form
# libraries = ['somelib','otherlib']
#To append use the form
# libraries += ['somelib','otherlib']
# Valid values for scalapack are False, or True:
# False (the default) - no ScaLapack compiled in
# True - ScaLapack compiled in
#scalapack = True
#compiler = 'mpcc'
#libraries = []
#libraries += []
#library_dirs = []
#library_dirs += []
#include_dirs = []
#include_dirs += []
#extra_link_args = []
#extra_link_args += []
#extra_compile_args = []
#extra_compile_args += []
#runtime_library_dirs = []
#runtime_library_dirs += []
#extra_objects = []
#extra_objects += []
#define_macros = []
#define_macros += []
#mpicompiler = None
#mpilinker = None
#mpi_libraries = []
#mpi_libraries += []
#mpi_library_dirs = []
#mpi_library_dirs += []
#mpi_include_dirs = []
#mpi_include_dirs += []
#mpi_runtime_library_dirs = []
#mpi_runtime_library_dirs += []
#mpi_define_macros = []
#mpi_define_macros += []
#platform_id = ''