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 |
|
15 |
# Configuration for shake75 (32-bit Intel Core 2 running Debian Linux) |
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 |
# usedebug = 'no' |
22 |
# cc_debug = '-g' |
23 |
omp_optim = '-fopenmp' |
24 |
omp_debug = '' |
25 |
omp_libs = [] |
26 |
|
27 |
# Use the default C/C++ flags but add something only for this host: |
28 |
cc_extra = '-Wall -mmmx -msse' |
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/lib/python2.5' |
39 |
# python_lib_path = '/usr/lib' |
40 |
# python_libs = 'python2.5' |
41 |
# python_cmd = 'python' |
42 |
|
43 |
# Boost libraries |
44 |
boost_path = '/usr/include/' |
45 |
# boost_lib_path = '/usr/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 = '/usr/include/' |
54 |
#netCDF_lib_path = '/usr/lib/' |
55 |
#netCDF_libs = ['netcdf_c++', 'netcdf'] |
56 |
|
57 |
# MKL |
58 |
# usemkl = 'yes' |
59 |
# mkl_path = '/usr/include' |
60 |
# mkl_lib_path = '/usr/lib' |
61 |
# mkl_libs = ['mkl_solver', 'mkl_em64t', 'mkl_core', 'guide', 'pthread'] |
62 |
|
63 |
# UMFPACK (requires AMD and BLAS) |
64 |
useumfpack = 'yes' |
65 |
# ufc_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include' |
66 |
# umf_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include' |
67 |
# umf_lib_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/lib' |
68 |
# umf_libs = ['umfpack'] |
69 |
# amd_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include' |
70 |
# amd_lib_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/lib' |
71 |
# amd_libs = ['amd'] |
72 |
# blas_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include' |
73 |
# blas_lib_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/lib' |
74 |
# blas_libs = ['blas'] |
75 |
|
76 |
# Silo |
77 |
usesilo = 'yes' |
78 |
silo_path = '/usr/local/include/' |
79 |
silo_lib_path = '/usr/local/lib/' |
80 |
silo_libs = ['siloh5', 'hdf5'] |
81 |
|
82 |
# OpenMP |
83 |
useopenmp = 'yes' |
84 |
|
85 |
# MPICH2 (to run Escript use: module load mpich2/gcc-4.1.2/mpich2-1.0.7) |
86 |
usempi = 'yes' |
87 |
mpi_path = '/usr/include/mpi' |
88 |
mpi_lib_path = '/usr/lib/openmpi/lib' |
89 |
mpi_libs = ['mpi_cxx', 'mpi', 'open-rte', 'open-pal'] |
90 |
mpi_flavour = 'OPENMPI' |
91 |
|
92 |
# ParMETIS (for use with MPI) |
93 |
#useparmetis = 'yes' |
94 |
#parmetis_path = '/usr/local/include' |
95 |
#parmetis_lib_path = '/usr/local/lib' |
96 |
#parmetis_libs = ['parmetis', 'metis'] |
97 |
|
98 |
# PAPI |
99 |
# usepapi = 'no' |
100 |
# papi_path = '/usr/include' |
101 |
# papi_lib_path = '/usr/lib' |
102 |
# papi_libs = ['papi'] |
103 |
# papi_instrument_solver = 'no' |
104 |
|