1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 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 |
|
15 |
# Configuration for shake24 (MacOS Darwin) |
16 |
|
17 |
# If you cannot use the default compiler flags set in SConstruct, then change them here |
18 |
# C/C++ Compiler flags (always use cc_flags and either cc_optim or cc_debug) |
19 |
# cc_flags = '-ansi' |
20 |
# cc_optim = '-O2' |
21 |
# cc_debug = '-g' |
22 |
omp_optim = '-fopenmp' |
23 |
omp_debug = '-fopenmp' |
24 |
# omp_libs = ['guide'] |
25 |
|
26 |
# Use the default C/C++ flags but add something only for this host: |
27 |
cc_extra = '-Wno-long-long' |
28 |
#cc_extra = '-pedantic -isystem /usr/include/python2.5/ -Wall' |
29 |
ld_extra = '-fopenmp' |
30 |
|
31 |
# Be picky about errors |
32 |
usepedantic = 'no' |
33 |
|
34 |
# Extra libraries |
35 |
# sys_libs = [] |
36 |
|
37 |
# Python libraries |
38 |
python_path = '/usr/include/python2.5' |
39 |
python_lib_path = '/usr/lib' |
40 |
# python_libs = ['python2.5'] |
41 |
# python_cmd = 'python' |
42 |
|
43 |
# Boost libraries |
44 |
boost_path = '/opt/local/include/boost-1_35/' |
45 |
boost_lib_path = '/opt/local/lib' |
46 |
boost_libs = ['boost_python'] |
47 |
|
48 |
# Specify whether or not to use VTK |
49 |
usevtk = 'yes' |
50 |
|
51 |
# NetCDF |
52 |
usenetcdf = 'yes' |
53 |
netCDF_path = '/opt/local/include' |
54 |
netCDF_lib_path = '/opt/local/lib' |
55 |
# netCDF_libs = ['netcdf_c++', 'netcdf'] |
56 |
|
57 |
# MKL |
58 |
# usemkl = 'yes' |
59 |
# mkl_path = '/sw/sdev/cmkl/10.0.2.18/include' |
60 |
# mkl_lib_path = '/sw/sdev/cmkl/10.0.2.18/lib/em64t' |
61 |
# mkl_libs = ['mkl_solver', 'mkl_em64t', 'mkl_core', 'guide', 'pthread'] |
62 |
|
63 |
# UMFPACK (requires AMD and BLAS) |
64 |
useumfpack = 'yes' |
65 |
ufc_path = '/opt/local/include/umfpack-5.0.3/Include' |
66 |
umf_path = '/opt/local/include/umfpack-5.0.3/Include' |
67 |
umf_lib_path = '/opt/local/include/umfpack-5.0.3/Lib' |
68 |
umf_libs = ['umfpack'] |
69 |
amd_path = '/opt/local/include/umfpack-5.0.3/Include' |
70 |
amd_lib_path = '/opt/local/include/umfpack-5.0.3/Lib' |
71 |
amd_libs = ['amd'] |
72 |
blas_path = '/opt/local/include/umfpack-5.0.3/Include' |
73 |
blas_lib_path = '/opt/local/include/umfpack-5.0.3/Lib' |
74 |
blas_libs = ['blas'] |
75 |
|
76 |
# OpenMP |
77 |
useopenmp = 'yes' |
78 |
|
79 |
# MPI MPT (no module load required) |
80 |
# usempi = 'no' |
81 |
# mpi_path = '/usr/include' |
82 |
# mpi_lib_path = '/usr/lib64' |
83 |
# mpi_libs = ['mpi'] |
84 |
# mpi_run = 'mpirun -np 1' |
85 |
|
86 |
# ParMETIS (for use with MPI) |
87 |
# useparmetis = 'yes' |
88 |
# parmetis_path = '/sw/libs/parmetis/x86_64/gcc-4.1.2/parmetis-3.1/include' |
89 |
# parmetis_lib_path = '/sw/libs/parmetis/x86_64/gcc-4.1.2/parmetis-3.1/lib' |
90 |
# parmetis_libs = ['parmetis', 'metis'] |
91 |
|
92 |
# PAPI |
93 |
# usepapi = 'no' |
94 |
# papi_path = '/usr/include' |
95 |
# papi_lib_path = '/usr/lib64' |
96 |
# papi_libs = ['papi'] |
97 |
# papi_instrument_solver = 'no' |
98 |
|