[1125] | 1 | import os
|
---|
| 2 | import sys
|
---|
| 3 | import glob
|
---|
[1082] | 4 | import distutils.sysconfig
|
---|
| 5 | import platform
|
---|
[1125] | 6 | # scons plug-ins
|
---|
[1120] | 7 | sys.path.append("scons")
|
---|
| 8 | from casa import checkCasa
|
---|
[1125] | 9 | from installtree import InstallTree
|
---|
[1082] | 10 |
|
---|
[1125] | 11 | moduledir = distutils.sysconfig.get_python_lib()
|
---|
[1082] | 12 |
|
---|
[1120] | 13 | opts = Options("userconfig.py")
|
---|
| 14 | opts.AddOptions(PathOption("prefix", "The root installation path",
|
---|
| 15 | distutils.sysconfig.PREFIX),
|
---|
| 16 | PathOption("moduledir",
|
---|
| 17 | "The python module path (site-packages))",
|
---|
| 18 | moduledir),
|
---|
[1127] | 19 | ("casadir", "Where casa lives. Default is to autodetect", ""),
|
---|
[1120] | 20 | EnumOption("mode", "The type of build.", "debug",
|
---|
| 21 | ["release","debug"], ignorecase=1))
|
---|
[1082] | 22 |
|
---|
[1105] | 23 | def SGlob(pattern):
|
---|
| 24 | path = GetBuildPath('SConscript').replace('SConscript', '')
|
---|
| 25 | return [ i.replace(path, '') for i in glob.glob(path + pattern) ]
|
---|
| 26 |
|
---|
| 27 |
|
---|
[1120] | 28 | env = Environment( toolpath = ['./scons'], tools = ["default", "disttar"],
|
---|
| 29 | ENV = { 'PATH' : os.environ[ 'PATH' ],
|
---|
| 30 | 'HOME' : os.environ[ 'HOME' ] },
|
---|
| 31 | options = opts)
|
---|
[1082] | 32 |
|
---|
[1120] | 33 | Help(opts.GenerateHelpText(env))
|
---|
| 34 | env.SConsignFile()
|
---|
[1082] | 35 | env.Append(CASAARCH = '')
|
---|
| 36 | env.Append(CASAROOT = '')
|
---|
| 37 | if not env.GetOption('clean'):
|
---|
| 38 | conf = Configure(env,custom_tests = {'CheckCasa': checkCasa} )
|
---|
| 39 | pyvers = 'python'+distutils.sysconfig.get_python_version()
|
---|
| 40 | if not conf.CheckLib(library=pyvers, language='c'): Exit(1)
|
---|
| 41 | if not conf.CheckHeader(pyvers+'/Python.h', language='c'): Exit(1)
|
---|
| 42 | else: conf.env.Append(CPPPATH=[distutils.sysconfig.get_python_inc()])
|
---|
[1090] | 43 | if not conf.CheckHeader(['boost/python.hpp'], language="C++"): Exit(1)
|
---|
[1082] | 44 | if not conf.CheckLib(library='boost_python', language='c++'): Exit(1)
|
---|
[1090] | 45 | if not conf.CheckLib('rpfits'): Exit(1)
|
---|
[1120] | 46 | if not conf.CheckHeader('cfitsio/fitsio.h', language='c++'): Exit(1)
|
---|
[1090] | 47 | if not conf.CheckLib('cfitsio'): Exit(1)
|
---|
| 48 | if not conf.CheckLib('lapack'): Exit(1)
|
---|
| 49 | if not conf.CheckLib('blas'): Exit(1)
|
---|
[1105] | 50 | if not conf.CheckLib('g2c'): Exit(1)
|
---|
[1090] | 51 | if not conf.CheckLib('stdc++',language='c++'): Exit(1)
|
---|
[1127] | 52 | if not conf.CheckCasa(env["casadir"]): Exit(1)
|
---|
[1082] | 53 | env = conf.Finish()
|
---|
[1120] | 54 |
|
---|
| 55 | env["dist_dir"] = "dist/asap"
|
---|
[1090] | 56 | # general CPPFLAGS
|
---|
[1082] | 57 | env.Append(CPPFLAGS='-O3 -Wno-long-long'.split())
|
---|
[1090] | 58 | # 64bit flags
|
---|
[1082] | 59 | if platform.architecture()[0] == '64bit':
|
---|
[1123] | 60 | env.Append(CPPFLAGS='-fPIC -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__x86_64__ -DAIPS_64B'.split())
|
---|
[1128] | 61 | # hack to install into /usr/lib64 if scons isn't installed there
|
---|
| 62 | if moduledir.startswith("/usr/lib/"):
|
---|
| 63 | moduledir.replace("lib","lib64")
|
---|
[1120] | 64 | if env['mode'] == 'release':
|
---|
| 65 | env.Append(LINKFLAGS=['-Wl,-O1'])
|
---|
| 66 | Export("env","SGlob")
|
---|
[1082] | 67 |
|
---|
| 68 | so = env.SConscript("src/SConscript", build_dir="build", duplicate=0)
|
---|
[1120] | 69 |
|
---|
| 70 | env.Install(env["dist_dir"], so )
|
---|
| 71 | pys = env.SConscript("python/SConscript")
|
---|
[1125] | 72 | asapmod = InstallTree(env,
|
---|
| 73 | dest_dir = os.path.join(moduledir, "asap"),
|
---|
[1128] | 74 | src_dir = "dist/asap",
|
---|
[1125] | 75 | includes = ['*.py', '*.so'],
|
---|
| 76 | excludes = [])
|
---|
[1127] | 77 | asapbin = env.Install(os.path.join(distutils.sysconfig.PREFIX, "bin"),"bin/asap")
|
---|
| 78 | env.Alias('install', [asapmod, asapbin])
|
---|
[1120] | 79 |
|
---|
| 80 | #if env['mode'] == "release":
|
---|
| 81 | # env.DistTar("dist/asap", ["README", "INSTALL", Dir(env["dist_dir"])])
|
---|