/[escript]/trunk/modellib/py_src/SConscript
ViewVC logotype

Annotation of /trunk/modellib/py_src/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 682 - (hide annotations)
Mon Mar 27 02:43:09 2006 UTC (16 years, 11 months ago) by robwdcock
File size: 316 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 jgs 268 Import('*')
2    
3 robwdcock 682 local_env=env.Copy()
4 jgs 268
5 robwdcock 682 src_dir = local_env.Dir('.').srcnode().abspath
6 jgs 268
7 robwdcock 682 import os
8     filenames = os.listdir(src_dir)
9     python_src = [x for x in filenames if os.path.splitext(x)[1] in ['.py']]
10 jgs 268
11 robwdcock 682 pyc = local_env.PyCompile(python_src)
12 jgs 268
13 robwdcock 682 local_env.Depends(pyc, dep_lib)
14     local_env.Install(pyinstall+'/modellib', pyc)

  ViewVC Help
Powered by ViewVC 1.1.26