1 |
Import('*') |
2 |
|
3 |
lib_name = 'escriptcpp' |
4 |
|
5 |
local_env=env.Copy() |
6 |
|
7 |
src_dir = local_env.Dir('.').srcnode().abspath |
8 |
|
9 |
import os |
10 |
filenames = os.listdir(src_dir) |
11 |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
12 |
headers = [x for x in filenames if os.path.splitext(x)[1] in ['.h']] |
13 |
|
14 |
include = Dir('escript/Data', esys_inc) |
15 |
local_env.Install( include, headers ) |
16 |
|
17 |
local_env.Append(LIBS= [boost_lib_name, 'esysUtils']) |
18 |
|
19 |
if env['PLATFORM'] == "win32": |
20 |
local_env.Append(CPPDEFINES=['_WINDOWS', '_USRDLL', 'ESCRIPT_EXPORTS']) |
21 |
local_env.Append(LIBS= ['ext_math']) |
22 |
local_env['PDB'] = lib_name + '.pdb' |
23 |
elif env['PLATFORM'] == "posix" : |
24 |
pass |
25 |
else: |
26 |
import os |
27 |
|
28 |
cxx_flags = '-O0 -openmp -openmp_report0 -tpp2 -ansi -ansi_alias -no-gcc -w1' |
29 |
|
30 |
cpp_path = ['#../escript/inc', |
31 |
'#../esysUtils/inc', |
32 |
'/raid2/tools/python-2.3.4/include/python2.3', |
33 |
'/raid2/tools/boost/include/boost-1_31'] |
34 |
|
35 |
local_env = Environment(ENV = os.environ) |
36 |
|
37 |
local_env.Replace(CXX = 'icc') |
38 |
local_env.Replace(SHOBJSUFFIX = '.lo') |
39 |
local_env.Replace(CXXFLAGS = cxx_flags) |
40 |
local_env.Replace(CPPPATH = cpp_path) |
41 |
|
42 |
escript_lib = local_env.SharedLibrary(lib_name, sources) |
43 |
local_env.Install(esys_lib, escript_lib) |
44 |
|
45 |
# Python |
46 |
local_env.Export('lib_name') |
47 |
env.SConscript(dirs = ['#/escript/py_src'], build_dir='build/$PLATFORM/escript/py', duplicate=0) |