/[escript]/trunk/scons/shake63_options.py
ViewVC logotype

Contents of /trunk/scons/shake63_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1946 - (show annotations)
Wed Oct 29 05:48:53 2008 UTC (14 years, 4 months ago) by jfenwick
File MIME type: text/x-python
File size: 3226 byte(s)
A cleanup of some of the problems I found doing a Wall compile.

Removed some commented out lines.
Swapped some member initialisers.
Removed virtual qualifiers from some methods in FunctionSpace.
Fixed some unused or (possibly) uninitialised variables.


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 shake63 (32-bit Intel running Fedora 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 # cc_debug = '-g'
22 # omp_optim = '-openmp'
23 # omp_debug = '-openmp'
24 # omp_libs = []
25
26 # Use the default C/C++ flags but add something only for this host:
27 cc_extra = '-Wall -isystem /usr/include/boost/'
28 # ld_extra = ''
29
30 # Be picky about errors
31 # usepedantic = 'no'
32
33 # Extra libraries
34 # sys_libs = ['guide', 'pthread', 'stdc++']
35
36 # Python libraries
37 python_path = '/usr/include/python2.5'
38 python_lib_path = '/usr/lib'
39 python_libs = 'python2.5'
40 # python_cmd = 'python'
41
42 # Boost libraries
43 boost_path = '/usr/include/'
44 boost_lib_path = '/usr/lib'
45 boost_libs = ['boost_python']
46
47 # Specify whether or not to use VTK
48 # usevtk = 'yes'
49
50 # NetCDF
51 # usenetcdf = 'yes'
52 netCDF_path = '/usr/include/netcdf-3'
53 netCDF_lib_path = '/usr/lib'
54 # netCDF_libs = ['netcdf_c++', 'netcdf']
55
56 # MKL
57 # usemkl = 'yes'
58 # mkl_path = '/sw/sdev/cmkl/10.0.2.18/include'
59 # mkl_lib_path = '/sw/sdev/cmkl/10.0.2.18/lib/em64t'
60 # mkl_libs = ['mkl_solver', 'mkl_em64t', 'mkl_core', 'guide', 'pthread']
61
62 # UMFPACK (requires AMD and BLAS)
63 # useumfpack = 'yes'
64 # ufc_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include'
65 # umf_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include'
66 # umf_lib_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/lib'
67 # umf_libs = ['umfpack']
68 # amd_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include'
69 # amd_lib_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/lib'
70 # amd_libs = ['amd']
71 # blas_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/include'
72 # blas_lib_path = '/sw/libs/umfpack/x86_64/gcc-4.1.2/umfpack-5.2/lib'
73 # blas_libs = ['blas']
74
75 # OpenMP
76 # useopenmp = 'yes'
77
78 # MPICH2 (to run Escript use: module load mpich2/gcc-4.1.2/mpich2-1.0.7)
79 # usempi = 'no'
80 # mpi_path = '/home/Work/InstallArea/mpich2-1.0.7/include'
81 # mpi_lib_path = '/home/Work/InstallArea/mpich2-1.0.7/lib'
82 # mpi_libs = ['mpich', 'rt']
83 # mpi_run = 'mpirun -np 1'
84
85 # MPICH2 for jumpshot (to run Escript use: module load mpich2/gcc-4.1.2/mpich2-1.0.7)
86 # mpi_path = '/home/Work/InstallArea/mpich2-1.0.7/include'
87 # mpi_lib_path = '/home/Work/InstallArea/mpich2-1.0.7/lib'
88 # mpi_libs = ['lmpe', 'mpe', 'mpich', 'rt']
89 # mpi_run = 'mpirun -np 1'
90
91 # ParMETIS (for use with MPI)
92 # useparmetis = 'yes'
93 # parmetis_path = '/home/Work/InstallArea/parmetis-3.1/include'
94 # parmetis_lib_path = '/home/Work/InstallArea/parmetis-3.1/lib'
95 # parmetis_libs = ['parmetis', 'metis']
96
97 # PAPI
98 # usepapi = 'no'
99 # papi_path = '/usr/include'
100 # papi_lib_path = '/usr/lib'
101 # papi_libs = ['papi']
102 # papi_instrument_solver = 'no'
103

  ViewVC Help
Powered by ViewVC 1.1.26