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 |
# If you cannot use the default compiler flags set in SConstruct, |
17 |
# then change them here |
18 |
#cc="gcc-4.4" |
19 |
#cxx="g++-4.4" |
20 |
# C/C++ Compiler flags (always use cc_flags and either cc_optim or cc_debug) |
21 |
# cc_flags = '-ansi' |
22 |
# cc_optim = '-O2' |
23 |
# usedebug = 'no' |
24 |
# cc_debug = '-g' |
25 |
omp_optim = '-fopenmp' |
26 |
omp_debug = '' |
27 |
omp_libs = [] |
28 |
|
29 |
# Use the default C/C++ flags but add something only for this host: |
30 |
cc_extra = '-Wall -mmmx -msse' |
31 |
cxx_extra = '-Wall -mmmx -msse' |
32 |
ld_extra = '-fopenmp' |
33 |
|
34 |
# Be picky about errors |
35 |
# usepedantic = 'no' |
36 |
|
37 |
# Extra libraries |
38 |
# sys_libs = [] |
39 |
|
40 |
# Python libraries |
41 |
# python_path = '/usr/lib/python2.6' |
42 |
# python_lib_path = '/usr/lib' |
43 |
# python_libs = 'python2.6' |
44 |
# python_cmd = 'python' |
45 |
|
46 |
# Boost libraries |
47 |
boost_path = '/usr/include/' |
48 |
# boost_lib_path = '/usr/lib' |
49 |
boost_libs = ['boost_python'] |
50 |
|
51 |
# Specify whether or not to use VTK |
52 |
# usevtk = 'yes' |
53 |
|
54 |
# NetCDF |
55 |
#usenetcdf = 'yes' |
56 |
#netCDF_path = '/usr/include/' |
57 |
#netCDF_lib_path = '/usr/lib/' |
58 |
#netCDF_libs = ['netcdf_c++', 'netcdf'] |
59 |
|
60 |
# MKL |
61 |
# usemkl = 'yes' |
62 |
# mkl_path = '/usr/include' |
63 |
# mkl_lib_path = '/usr/lib' |
64 |
# mkl_libs = ['mkl_solver', 'mkl_em64t', 'mkl_core', 'guide', 'pthread'] |
65 |
|
66 |
# UMFPACK (requires AMD and BLAS) |
67 |
useumfpack = 'yes' |
68 |
# ufc_path = '/usr/include' |
69 |
# umf_path = '/usr/include' |
70 |
# umf_lib_path = '/usr/lib' |
71 |
# umf_libs = ['umfpack'] |
72 |
# amd_path = '/usr/include' |
73 |
# amd_lib_path = '/usr/lib' |
74 |
# amd_libs = ['amd'] |
75 |
# blas_path = '/usr/include' |
76 |
# blas_lib_path = '/usr/lib' |
77 |
# blas_libs = ['blas'] |
78 |
|
79 |
# Silo |
80 |
usesilo = 'yes' |
81 |
silo_path = '/usr/local/include/' |
82 |
silo_lib_path = '/usr/local/lib/' |
83 |
silo_libs = ['siloh5', 'hdf5'] |
84 |
|
85 |
# VisIt |
86 |
usevisit = 'yes' |
87 |
visit_path = '/opt/visit/2.1.0/linux-intel/libsim/V2/include' |
88 |
visit_lib_path = '/opt/visit/2.1.0/linux-intel/libsim/V2/lib' |
89 |
#visit_path = '/home/caltinay/src/visit-trunk/src/include/visit' |
90 |
#visit_lib_path = '/home/caltinay/src/visit-trunk/src/lib' |
91 |
|
92 |
# OpenMP |
93 |
useopenmp = 'yes' |
94 |
|
95 |
# MPI |
96 |
usempi = 'yes' |
97 |
mpi_path = '/usr/include/mpi' |
98 |
mpi_lib_path = '/usr/lib/openmpi/lib' |
99 |
mpi_libs = ['mpi_cxx', 'mpi', 'open-rte', 'open-pal'] |
100 |
mpi_flavour = 'OPENMPI' |
101 |
|
102 |
# ParMETIS (for use with MPI) |
103 |
#useparmetis = 'yes' |
104 |
#parmetis_path = '/usr/local/include' |
105 |
#parmetis_lib_path = '/usr/local/lib' |
106 |
#parmetis_libs = ['parmetis', 'metis'] |
107 |
|
108 |
# PAPI |
109 |
# usepapi = 'no' |
110 |
# papi_path = '/usr/include' |
111 |
# papi_lib_path = '/usr/lib' |
112 |
# papi_libs = ['papi'] |
113 |
# papi_instrument_solver = 'no' |
114 |
|