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

Contents of /trunk/scons/ac_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 740 - (show annotations)
Thu Jun 22 03:23:05 2006 UTC (16 years, 9 months ago) by woo409
File MIME type: text/x-python
File size: 1870 byte(s)
+ Options to build on APAC NF ac machine modified to use /home/escript build area. escript builds using its own version of boost and python2.4.3 (and scons for that matter) in this directory rather than using the APAC NF installations. This eases APAC's module management where different groups want slightly different configurations for various modules.

1
2 # Copyright 2006 by ACcESS MNRF
3 #
4 # http://www.access.edu.au
5 # Primary Business: Queensland, Australia
6 # Licensed under the Open Software License version 3.0
7 # http://www.opensource.org/licenses/osl-3.0.php
8 #
9
10
11
12 # locations of libs etc used by mkl
13 mkl_path = '/opt/intel-mkl/8.0/include'
14 mkl_lib_path ='/opt/intel-mkl/8.0/lib/64'
15 mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf']
16
17 # locations of libs etc used by SCSL
18 scsl_path = '/opt/scsl-1.6.1.0/include/'
19 scsl_lib_path = '/opt/scsl-1.6.1.0/lib'
20 scsl_libs = ['scs_mp']
21
22 # locations of include files for python
23 python_path = '/home/escript/python-2.4.3/include/python2.4'
24 python_lib_path = '/home/escript/python-2.4.3/lib'
25 python_lib = 'python2.4'
26
27 # locations of libraries for boost
28 boost_path = '/home/escript/boost-1.33.1/include/boost-1_33_1'
29 boost_lib_path = '/home/escript/boost-1.33.1/lib'
30 boost_lib = 'boost_python-gcc-mt'
31
32 # locations of doc building executables
33 #doxygen_path = '/raid2/tools/doxygen/1.4.2/gcc-3.3.5/bin'
34 #epydoc_path = '/raid2/tools/epydoc/2.1/python-2.3.4/bin'
35 #epydoc_pythonpath = '/raid2/tools/epydoc/2.1/python-2.3.4/lib/python2.3/site-packages'
36
37 # locations of PAPI
38 # papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include'
39 # papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib'
40 # papi_libs = [ 'papi' ]
41
42 # c flags to use
43 cc_flags = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -openmp -openmp_report0 -fno-alias -c99 -w1 -fpic"
44 cc_flags_debug = '-g -O0 -openmp -openmp_report0 -c99 -w1 -fpic'
45
46 # c++ flags to use
47 cxx_flags = '-ansi'
48 cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF'
49
50 # system specific libraries to link with
51 sys_libs = ['guide', 'irc']

  ViewVC Help
Powered by ViewVC 1.1.26