1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2010 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
import os |
15 |
|
16 |
# PREFIXES: |
17 |
# There are two ways to specify where to find dependent headers and libraries |
18 |
# (via the <dependency>_prefix): |
19 |
# 1) If your installation follows the general scheme where headers are located |
20 |
# in <prefix>/include[32,64], and libraries in <prefix>/lib[32,64] then |
21 |
# it is sufficient to specify this prefix, e.g. boost_prefix='C:/python' |
22 |
# 2) Otherwise provide a list with two elements, where the first one is the |
23 |
# include path, and the second the library path, e.g. |
24 |
# boost_prefix=['C:/boost/include/boost1_44', 'C:/boost/lib'] |
25 |
# All <dependency>_prefix settings default to '/usr' so have to be set |
26 |
# manually on Windows. |
27 |
|
28 |
# The options file version. SCons will refuse to build if there have been |
29 |
# changes to the set of variables and your file has not been updated. |
30 |
# This setting is mandatory. |
31 |
escript_opts_version = 201 |
32 |
|
33 |
# Installation prefix. Files will be installed in subdirectories underneath. |
34 |
# DEFAULT: '.' (current directory) |
35 |
#prefix = 'C:/escript' |
36 |
|
37 |
# Top-level directory for intermediate build and test files. |
38 |
# DEFAULT: 'build' |
39 |
#build_dir = 'build' |
40 |
|
41 |
# C compiler command name or full path. |
42 |
# DEFAULT: auto-detected |
43 |
#cc = 'gcc' |
44 |
|
45 |
# C++ compiler command name or full path. |
46 |
# DEFAULT: auto-detected |
47 |
#cxx = 'g++' |
48 |
|
49 |
# Flags to use with both C and C++ compilers. Do not set unless you know |
50 |
# what you are doing - use cc_extra to specify additional flags! |
51 |
# DEFAULT: compiler-dependent |
52 |
cc_flags = '/EHsc /GR /MD /Qvc7.1' |
53 |
|
54 |
# Additional compiler (optimization) flags for non-debug builds |
55 |
# DEFAULT: compiler-dependent |
56 |
cc_optim = '/fast /Oi /W3 /Qssp /Qinline-factor- /Qinline-min-size=0 /Qunroll' |
57 |
|
58 |
# Additional compiler flags for debug builds |
59 |
# DEFAULT: compiler-dependent |
60 |
cc_debug = '/Od /RTCcsu /Zi /Y- /debug:all /Qtrapuv' |
61 |
|
62 |
# Additional flags to add to the C compiler only |
63 |
# DEFAULT: '' (empty) |
64 |
#cc_extra = '' |
65 |
|
66 |
# Additional flags to add to the C++ compiler only |
67 |
# DEFAULT: '' (empty) |
68 |
#cxx_extra = '' |
69 |
|
70 |
# Additional flags to add to the linker |
71 |
# DEFAULT: '' (empty) |
72 |
#ld_extra = '' |
73 |
|
74 |
# Whether to treat compiler warnings as errors |
75 |
# DEFAULT: True |
76 |
werror = False |
77 |
|
78 |
# Whether to build a debug version |
79 |
# DEFAULT: False |
80 |
#debug = True |
81 |
|
82 |
# Set to True to print the full compiler/linker command line |
83 |
# DEFAULT: False |
84 |
verbose = True |
85 |
|
86 |
# Set to True to add flags that enable OpenMP parallelization |
87 |
# DEFAULT: False |
88 |
openmp = True |
89 |
|
90 |
# Additional compiler flags for OpenMP builds |
91 |
# DEFAULT: compiler-dependent |
92 |
omp_flags = '/Qvec-report0 /Qopenmp /Qopenmp-report0 /Qparallel' |
93 |
|
94 |
# Additional linker flags for OpenMP builds |
95 |
# DEFAULT: compiler-dependent |
96 |
omp_ldflags = '/Qvec-report0 /Qopenmp /Qopenmp-report0 /Qparallel' |
97 |
|
98 |
# Flavour of MPI implementation |
99 |
# Recognized values: 'none', 'MPT', 'MPICH', 'MPICH2', 'OPENMPI', 'INTELMPI' |
100 |
# DEFAULT: 'none' (disable MPI) |
101 |
mpi = 'MPICH2' |
102 |
|
103 |
# Prefix or paths to MPI headers and libraries. See note above about prefixes. |
104 |
mpi_prefix = 'C:/Program Files/MPICH2' |
105 |
|
106 |
# MPI libraries to link against |
107 |
mpi_libs = ['mpi'] |
108 |
|
109 |
dotdot = os.path.realpath('..') |
110 |
|
111 |
# Prefix or paths to boost-python headers and libraries. See note above. |
112 |
boost_prefix = [os.path.join(dotdot, 'boost_1_39_0'), os.path.join(dotdot, 'boost_1_39_0','stage','lib')] |
113 |
|
114 |
# boost-python library/libraries to link against |
115 |
boost_libs = ['boost_python-vc71-mt-1_39'] |
116 |
|
117 |
# Prefix or paths to CppUnit headers and libraries. See note above. |
118 |
#cppunit_prefix = 'C:/CppUnit' |
119 |
|
120 |
# CppUnit library/libraries to link against |
121 |
#cppunit_libs = ['cppunit'] |
122 |
|
123 |
# Whether to use the netCDF library for dump file support |
124 |
# DEFAULT: False |
125 |
netcdf = True |
126 |
|
127 |
# Prefix or paths to netCDF headers and libraries. See note above. |
128 |
netcdf_prefix = [os.path.join(dotdot, 'netcdf', 'src', 'include'), os.path.join(dotdot, 'netcdf', 'lib')] |
129 |
|
130 |
# netCDF library/libraries to link against |
131 |
netcdf_libs = ['netcdf_cpp', 'netcdf'] |
132 |
|
133 |
# Whether to use the parMETIS library (only in conjunction with MPI) |
134 |
# DEFAULT: False |
135 |
#parmetis = True |
136 |
|
137 |
# Prefix or paths to parMETIS headers and libraries. See note above. |
138 |
#parmetis_prefix = 'C:/parmetis' |
139 |
|
140 |
# parMETIS library/libraries to link against |
141 |
#parmetis_libs = ['parmetis', 'metis'] |
142 |
|
143 |
# Whether to use the Intel PAPI (Performance API) library |
144 |
# DEFAULT: False |
145 |
#papi = True |
146 |
|
147 |
# Prefix or paths to PAPI headers and libraries. See note above. |
148 |
#papi_prefix = 'C:/papi' |
149 |
|
150 |
# PAPI library/libraries to link against |
151 |
#papi_libs = ['papi'] |
152 |
|
153 |
# Whether to use PAPI to instrument solver iterations |
154 |
# DEFAULT: False |
155 |
#papi_instrument_solver = True |
156 |
|
157 |
# Whether to use Intel MKL (Math Kernel Library) |
158 |
# DEFAULT: False |
159 |
#mkl = True |
160 |
|
161 |
# Prefix or paths to MKL headers and libraries. See note above. |
162 |
#mkl_prefix = 'C:/mkl' |
163 |
|
164 |
# MKL library/libraries to link against |
165 |
#mkl_libs = ['mkl_solver', 'mkl_em64t', 'mkl_core', 'guide'] |
166 |
|
167 |
# Whether to use UMFPACK (requires AMD and BLAS) |
168 |
# DEFAULT: False |
169 |
#umfpack = True |
170 |
|
171 |
# Prefix or paths to UMFPACK headers and libraries. See note above. |
172 |
#umfpack_prefix = 'C:/umfpack' |
173 |
|
174 |
# UMFPACK library/libraries to link against |
175 |
#umfpack_libs = ['umfpack'] |
176 |
|
177 |
# Whether to use BoomerAMG (requires MPI) |
178 |
# DEFAULT: False |
179 |
#boomeramg = True |
180 |
|
181 |
# Prefix or paths to BoomerAMG headers and libraries. See note above. |
182 |
#boomeramg_prefix = 'C:/boomeramg' |
183 |
|
184 |
# BoomerAMG library/libraries to link against |
185 |
#boomeramg_libs = ['HYPRE'] |
186 |
|
187 |
# Flavour of LAPACK implementation |
188 |
# Recognized values: 'none', 'clapack', 'mkl' |
189 |
# DEFAULT: 'none' (do not use LAPACK) |
190 |
#lapack = 'clapack' |
191 |
|
192 |
# Prefix or paths to LAPACK headers and libraries. See note above. |
193 |
#lapack_prefix = 'C:/lapack' |
194 |
|
195 |
# LAPACK library/libraries to link against |
196 |
#lapack_libs = ['lapack_atlas'] |
197 |
|
198 |
# Whether to use LLNL's SILO library for Silo output file support in weipa |
199 |
# DEFAULT: False |
200 |
#silo = True |
201 |
|
202 |
# Prefix or paths to SILO headers and libraries. See note above. |
203 |
#silo_prefix = 'C:/silo' |
204 |
|
205 |
# SILO library/libraries to link against |
206 |
#silo_libs = ['siloh5', 'hdf5'] |
207 |
|
208 |
# Whether to use LLNL's VisIt simulation interface (only version 2 supported) |
209 |
# DEFAULT: False |
210 |
#visit = True |
211 |
|
212 |
# Prefix or paths to VisIt's sim2 headers and libraries. See note above. |
213 |
#visit_prefix = 'C:/visit/2.1.0/linux-intel/libsim/V2' |
214 |
|
215 |
# Sim2 library/libraries to link against |
216 |
#visit_libs = ['simV2'] |
217 |
|
218 |
# Whether to enable the deprecated PyVisi interface (requires the VTK python |
219 |
# modules) |
220 |
# DEFAULT: False |
221 |
#pyvisi = True |
222 |
|
223 |
# Build dynamic libraries only |
224 |
#DEFAULT: False |
225 |
#build_shared = True |
226 |
|
227 |
|
228 |
### ADVANCED OPTIONS ### |
229 |
# Do not change the following options unless you know what they do |
230 |
|
231 |
# Use intel's VSL library for random data |
232 |
# DEFAULT: False |
233 |
#vsl_random = True |
234 |
|
235 |
# Extra libraries to link with |
236 |
sys_libs = ['C:/Program Files/Microsoft Visual Studio .NET 2003/Vc7/PlatformSDK/Lib/Ws2_32', 'C:\Program Files\Intel\Compiler\C++\9.1\IA32\Lib\libguide40'] |
237 |
|
238 |
# Additional environmental variables to export to the tools |
239 |
#env_export = [] |
240 |
|
241 |
tools_names = ['intelc'] |
242 |
|
243 |
#iknowwhatimdoing = False |
244 |
|
245 |
#forcelazy = 'leave_alone' |
246 |
|
247 |
#forcecollres = 'leave_alone' |
248 |
|