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

Contents of /trunk/scons/ess_options.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 682 - (show annotations)
Mon Mar 27 02:43:09 2006 UTC (17 years ago) by robwdcock
File MIME type: text/x-python
File size: 1947 byte(s)
+ NEW BUILD SYSTEM

This commit contains the new build system with cross-platform support.
Most things work are before though you can have more control.

ENVIRONMENT settings have changed:
+ You no longer require LD_LIBRARY_PATH or PYTHONPATH to point to the
esysroot for building and testing performed via scons
+ ACcESS altix users: It is recommended you change your modules to load
the latest intel compiler and other libraries required by boost to match
the setup in svn (you can override). The correct modules are as follows

module load intel_cc.9.0.026
export
MODULEPATH=${MODULEPATH}:/data/raid2/toolspp4/modulefiles/gcc-3.3.6
module load boost/1.33.0/python-2.4.1
module load python/2.4.1
module load numarray/1.3.3


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/mkl80.019/include'
14 mkl_lib_path ='/opt/intel/mkl80.019/lib/64'
15 mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf']
16
17 # locations of libs etc used by SCSL
18 scsl_path = '/usr/include'
19 scsl_lib_path = '/usr/lib'
20 scsl_libs = ['scs_mp']
21
22 # locations of include files for python
23 python_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/include/python2.4'
24 python_lib_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/lib'
25 python_lib = 'python2.4'
26
27 # locations of libraries for boost
28 boost_path = '/data/raid2/toolspp4/boost/1.33.0/python-2.4.1/gcc-3.3.6/include'
29 boost_lib_path = '/data/raid2/toolspp4/boost/1.33.0/python-2.4.1/gcc-3.3.6/lib'
30 boost_lib = 'boost_python-mt-d'
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 -ansi_alias -w1 -fpic'
45
46 # c++ flags to use
47 cxx_flags = '-ansi -ansi_alias'
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