6 |
# this is the general set up for the esys scons system: |
# this is the general set up for the esys scons system: |
7 |
libinstall = None |
libinstall = None |
8 |
pyinstall = None |
pyinstall = None |
9 |
|
incinstall = None |
10 |
dodebug = 0 |
dodebug = 0 |
11 |
|
|
12 |
# locations of libs etc used by mkl |
# locations of libs etc used by mkl |
71 |
options = None |
options = None |
72 |
if ARGUMENTS.get('libinstall',0): libinstall = ARGUMENTS.get('libinstall',0) |
if ARGUMENTS.get('libinstall',0): libinstall = ARGUMENTS.get('libinstall',0) |
73 |
if ARGUMENTS.get('pyinstall',0): pyinstall = ARGUMENTS.get('pyinstall',0) |
if ARGUMENTS.get('pyinstall',0): pyinstall = ARGUMENTS.get('pyinstall',0) |
74 |
|
if ARGUMENTS.get('incinstall',0): pyinstall = ARGUMENTS.get('incinstall',0) |
75 |
if ARGUMENTS.get('debug',0): dodebug = 1 |
if ARGUMENTS.get('debug',0): dodebug = 1 |
76 |
if ARGUMENTS.get('options',0): options = ARGUMENTS.get('options',0) |
if ARGUMENTS.get('options',0): options = ARGUMENTS.get('options',0) |
77 |
if ARGUMENTS.get('usegcc',0): usegcc = 1 |
if ARGUMENTS.get('usegcc',0): usegcc = 1 |
104 |
cxx_flags=cxx_flags_debug |
cxx_flags=cxx_flags_debug |
105 |
cc_flags=cc_flags_debug |
cc_flags=cc_flags_debug |
106 |
|
|
107 |
|
# |
108 |
|
# export configuration variables |
109 |
Export(["esysroot"]) |
Export(["esysroot"]) |
110 |
Export(["libinstall"]) |
Export(["libinstall"]) |
111 |
Export(["pyinstall"]) |
Export(["pyinstall"]) |
112 |
|
Export(["incinstall"]) |