[1125] | 1 | import os
|
---|
| 2 | import sys
|
---|
[1082] | 3 | import distutils.sysconfig
|
---|
| 4 | import platform
|
---|
[1184] | 5 | import SCons
|
---|
[1082] | 6 |
|
---|
[1873] | 7 | # try to autodetect numpy
|
---|
| 8 | def get_numpy_incdir():
|
---|
| 9 | try:
|
---|
| 10 | # try to find an egg
|
---|
| 11 | from pkg_resources import require
|
---|
| 12 | tmp = require("numpy")
|
---|
| 13 | import numpy
|
---|
| 14 | return numpy.__path__[0]+"/core/include"
|
---|
| 15 | except Exception:
|
---|
| 16 | # now try standard package
|
---|
| 17 | try:
|
---|
| 18 | import numpy
|
---|
| 19 | return numpy.__path__[0]+"/core/include"
|
---|
| 20 | except ImportError:
|
---|
| 21 | pass
|
---|
| 22 | return ""
|
---|
| 23 |
|
---|
[2179] | 24 | def get_moduledir(prefix="/usr/local"):
|
---|
| 25 | moduledir = distutils.sysconfig.get_python_lib(1,0, prefix)
|
---|
| 26 | if sys.platform.startswith('linux') \
|
---|
| 27 | and platform.architecture()[0] == '64bit' \
|
---|
| 28 | and platform.dist()[0].lower() not in ['debian', 'ubuntu']:
|
---|
| 29 | # hack to install into /usr/lib64 if scons is in the 32bit /usr/lib/
|
---|
| 30 | if moduledir.startswith("/usr"):
|
---|
| 31 | moduledir = moduledir.replace("lib", "lib64")
|
---|
| 32 | return moduledir
|
---|
[1740] | 33 |
|
---|
[2166] | 34 | EnsureSConsVersion(1,0,0)
|
---|
[1464] | 35 |
|
---|
| 36 | opts = Variables("options.cfg")
|
---|
| 37 | opts.AddVariables(
|
---|
[1325] | 38 | ("FORTRAN", "The fortran compiler", None),
|
---|
| 39 | ("f2clib", "The fortran to c library", None),
|
---|
[1464] | 40 | PathVariable("prefix",
|
---|
[1325] | 41 | "The root installation path",
|
---|
[1130] | 42 | distutils.sysconfig.PREFIX),
|
---|
[2179] | 43 | ("moduledir",
|
---|
| 44 | "The python module path (site-packages))",
|
---|
| 45 | None),
|
---|
[1464] | 46 | PathVariable("casacoreroot", "The location of casacore",
|
---|
[1740] | 47 | "/usr/local"),
|
---|
[1325] | 48 | ("boostroot", "The root dir where boost is installed", None),
|
---|
| 49 | ("boostlib", "The name of the boost python library",
|
---|
| 50 | "boost_python"),
|
---|
| 51 | ("boostlibdir", "The boost library location", None),
|
---|
| 52 | ("boostincdir", "The boost header file location", None),
|
---|
| 53 | ("lapackroot",
|
---|
| 54 | "The root directory where lapack is installed", None),
|
---|
| 55 | ("lapacklibdir", "The lapack library location", None),
|
---|
| 56 | ("lapacklib",
|
---|
| 57 | "The lapack library name (e.g. for specialized AMD libraries",
|
---|
[1327] | 58 | "lapack"),
|
---|
[1325] | 59 | ("blasroot",
|
---|
| 60 | "The root directory where blas is installed", None),
|
---|
| 61 | ("blaslibdir", "The blas library location", None),
|
---|
| 62 | ("blaslib",
|
---|
| 63 | "The blas library name (e.g. for specialized AMD libraries",
|
---|
[1327] | 64 | "blas"),
|
---|
[1325] | 65 | ("cfitsioroot",
|
---|
| 66 | "The root directory where cfistio is installed", None),
|
---|
| 67 | ("cfitsiolibdir", "The cfitsio library location", None),
|
---|
[1327] | 68 | ("cfitsiolib", "The cfitsio library name", "cfitsio"),
|
---|
[1325] | 69 | ("cfitsioincdir", "The cfitsio include location", None),
|
---|
[1740] | 70 | ("wcslib", "The wcs library name", "wcs"),
|
---|
[1325] | 71 | ("wcsroot",
|
---|
| 72 | "The root directory where wcs is installed", None),
|
---|
| 73 | ("wcslibdir", "The wcs library location", None),
|
---|
[1354] | 74 | ("rpfitslib", "The rpfits library name", "rpfits"),
|
---|
[1325] | 75 | ("rpfitsroot",
|
---|
| 76 | "The root directory where rpfits is installed", None),
|
---|
| 77 | ("rpfitslibdir", "The rpfits library location", None),
|
---|
[1501] | 78 | ("pyraproot", "The root directory where libpyrap is installed",
|
---|
| 79 | None),
|
---|
[1873] | 80 | ("numpyincdir", "numpy header file directory",
|
---|
| 81 | get_numpy_incdir()),
|
---|
[1501] | 82 | ("pyraplib", "The name of the pyrap library", "pyrap"),
|
---|
| 83 | ("pyraplibdir", "The directory where libpyrap is installed",
|
---|
| 84 | None),
|
---|
| 85 | ("pyrapincdir", "The pyrap include location",
|
---|
| 86 | None),
|
---|
| 87 | BoolVariable("enable_pyrap", "Use pyrap conversion library",
|
---|
[1687] | 88 | False),
|
---|
[1501] | 89 |
|
---|
[1464] | 90 | EnumVariable("mode", "The type of build.", "release",
|
---|
[1135] | 91 | ["release","debug"], ignorecase=1),
|
---|
[1177] | 92 | ("makedist",
|
---|
[1195] | 93 | "Make a binary archive giving a suffix, e.g. sarge or fc5",
|
---|
[1259] | 94 | ""),
|
---|
[1464] | 95 | EnumVariable("makedoc", "Build the userguide in specified format",
|
---|
[1259] | 96 | "none",
|
---|
[1406] | 97 | ["none", "pdf", "html"], ignorecase=1),
|
---|
[1740] | 98 | BoolVariable("apps", "Build cpp apps", True),
|
---|
[1501] | 99 | BoolVariable("alma", "Enable alma specific functionality",
|
---|
| 100 | False),
|
---|
[1130] | 101 | )
|
---|
[1082] | 102 |
|
---|
[1135] | 103 | env = Environment( toolpath = ['./scons'],
|
---|
[1325] | 104 | tools = ["default", "archiver", "utils",
|
---|
[1184] | 105 | "quietinstall"],
|
---|
[1135] | 106 | ENV = { 'PATH' : os.environ[ 'PATH' ],
|
---|
[1120] | 107 | 'HOME' : os.environ[ 'HOME' ] },
|
---|
[1135] | 108 | options = opts)
|
---|
[1082] | 109 |
|
---|
[1120] | 110 | Help(opts.GenerateHelpText(env))
|
---|
| 111 | env.SConsignFile()
|
---|
[1325] | 112 |
|
---|
| 113 | casacoretooldir = os.path.join(env["casacoreroot"],"share",
|
---|
| 114 | "casacore")
|
---|
| 115 | if not os.path.exists(casacoretooldir):
|
---|
| 116 | print "Could not find casacore scons tools"
|
---|
| 117 | Exit(1)
|
---|
| 118 |
|
---|
| 119 | # load casacore specific build flags
|
---|
[1406] | 120 | env.Tool('casaoptions', [casacoretooldir])
|
---|
| 121 | opts.Update(env)
|
---|
[1325] | 122 | env.Tool('casa', [casacoretooldir])
|
---|
| 123 |
|
---|
[1082] | 124 | if not env.GetOption('clean'):
|
---|
[1130] | 125 | conf = Configure(env)
|
---|
[1326] | 126 |
|
---|
| 127 | conf.env.AppendUnique(LIBPATH=os.path.join(conf.env["casacoreroot"],
|
---|
| 128 | "lib"))
|
---|
| 129 | conf.env.AppendUnique(CPPPATH=os.path.join(conf.env["casacoreroot"],
|
---|
| 130 | "include", "casacore"))
|
---|
| 131 | if not conf.CheckLib("casa_casa", language='c++'): Exit(1)
|
---|
[1443] | 132 | conf.env.PrependUnique(LIBS=["casa_images", "casa_ms", "casa_components",
|
---|
[1354] | 133 | "casa_coordinates", "casa_lattices",
|
---|
| 134 | "casa_fits", "casa_measures", "casa_scimath",
|
---|
| 135 | "casa_scimath_f", "casa_tables",
|
---|
| 136 | "casa_mirlib"])
|
---|
[1130] | 137 | conf.env.Append(CPPPATH=[distutils.sysconfig.get_python_inc()])
|
---|
| 138 | if not conf.CheckHeader("Python.h", language='c'):
|
---|
| 139 | Exit(1)
|
---|
[1325] | 140 | pylib = 'python'+distutils.sysconfig.get_python_version()
|
---|
| 141 | if env['PLATFORM'] == "darwin":
|
---|
| 142 | conf.env.Append(FRAMEWORKS=["Python"])
|
---|
[1130] | 143 | else:
|
---|
[1325] | 144 | if not conf.CheckLib(library=pylib, language='c'): Exit(1)
|
---|
| 145 |
|
---|
| 146 | conf.env.AddCustomPackage('boost')
|
---|
[1501] | 147 | if not conf.CheckLibWithHeader(conf.env["boostlib"],
|
---|
[1325] | 148 | 'boost/python.hpp', language='c++'):
|
---|
| 149 | Exit(1)
|
---|
[1501] | 150 |
|
---|
| 151 | conf.env.AddCustomPackage('pyrap')
|
---|
[1873] | 152 | if conf.CheckLib(conf.env["pyraplib"], language='c++', autoadd=0):
|
---|
[1902] | 153 | conf.env.Append(CPPFLAGS=['-DHAVE_LIBPYRAP'])
|
---|
[1501] | 154 | conf.env.PrependUnique(LIBS=env['pyraplib'])
|
---|
[1873] | 155 | else:
|
---|
| 156 | conf.env.AppendUnique(CPPPATH=[conf.env["numpyincdir"]])
|
---|
| 157 | # numpy 1.0 uses config.h; numpy >= 1.1 uses numpyconfig.h
|
---|
| 158 | if conf.CheckHeader("numpy/config.h") or \
|
---|
| 159 | conf.CheckHeader("numpy/numpyconfig.h"):
|
---|
| 160 | conf.env.Append(CPPDEFINES=["-DAIPS_USENUMPY"])
|
---|
| 161 | else:
|
---|
| 162 | conf.env.Exit(1)
|
---|
[1902] | 163 | conf.env.Append(CPPFLAGS=['-DHAVE_LIBPYRAP'])
|
---|
[1873] | 164 | # compile in pyrap here...
|
---|
| 165 | conf.env["pyrapint"] = "#/external/libpyrap/pyrap-0.3.2"
|
---|
[1325] | 166 | # test for cfitsio
|
---|
| 167 | if not conf.CheckLib("m"): Exit(1)
|
---|
| 168 | conf.env.AddCustomPackage('cfitsio')
|
---|
[1327] | 169 | if not conf.CheckLibWithHeader(conf.env["cfitsiolib"],
|
---|
| 170 | 'fitsio.h', language='c'):
|
---|
[1325] | 171 | Exit(1)
|
---|
| 172 | conf.env.AddCustomPackage('wcs')
|
---|
[1740] | 173 | if not conf.CheckLibWithHeader(conf.env["wcslib"],
|
---|
| 174 | 'wcslib/wcs.h', language='c'):
|
---|
[1325] | 175 | Exit(1)
|
---|
| 176 | conf.env.AddCustomPackage('rpfits')
|
---|
[1354] | 177 | if not conf.CheckLib(conf.env["rpfitslib"], language="c"):
|
---|
| 178 | Exit(1)
|
---|
[1325] | 179 |
|
---|
| 180 | # test for blas/lapack
|
---|
[1740] | 181 | lapackname = conf.env.get("lapacklib", "lapack")
|
---|
[1331] | 182 | conf.env.AddCustomPackage("lapack")
|
---|
[1740] | 183 | if not conf.CheckLib(lapackname): Exit(1)
|
---|
[1325] | 184 | blasname = conf.env.get("blaslib", "blas")
|
---|
| 185 | conf.env.AddCustomPackage("blas")
|
---|
[1740] | 186 | if not conf.CheckLib(blasname): Exit(1)
|
---|
[1325] | 187 | conf.env.CheckFortran(conf)
|
---|
[1130] | 188 | if not conf.CheckLib('stdc++', language='c++'): Exit(1)
|
---|
[1433] | 189 | if conf.env["alma"]:
|
---|
| 190 | conf.env.Append(CPPFLAGS=['-DUSE_ALMA'])
|
---|
[2179] | 191 | if not conf.env.get("moduledir"):
|
---|
| 192 | mdir = get_moduledir(conf.env.get("prefix"))
|
---|
| 193 | if env["PLATFORM"] == "darwin":
|
---|
| 194 | mdir = distutils.sysconfig.get_python_lib(1,0)
|
---|
| 195 | conf.env["moduledir"] = mdir
|
---|
[1082] | 196 | env = conf.Finish()
|
---|
[1120] | 197 |
|
---|
[2321] | 198 | env["version"] = "4.0.x"
|
---|
[1135] | 199 |
|
---|
[1120] | 200 | if env['mode'] == 'release':
|
---|
[1335] | 201 | if env["PLATFORM"] != "darwin":
|
---|
| 202 | env.Append(LINKFLAGS=['-Wl,-O1', '-s'])
|
---|
| 203 | env.Append(CCFLAGS=["-O2"])
|
---|
| 204 | else:
|
---|
[2179] | 205 | env.Append(CCFLAGS=["-g", "-W", "-Wall"])
|
---|
[1184] | 206 |
|
---|
| 207 | # Export for SConscript files
|
---|
[1135] | 208 | Export("env")
|
---|
[1082] | 209 |
|
---|
[1325] | 210 | # build externals
|
---|
[1819] | 211 | env.SConscript("external-alma/SConscript")
|
---|
[1184] | 212 | # build library
|
---|
[2179] | 213 | so = env.SConscript("src/SConscript", variant_dir="build", duplicate=0)
|
---|
[1195] | 214 | # test module import, to see if there are unresolved symbols
|
---|
| 215 | def test_module(target,source,env):
|
---|
| 216 | pth = str(target[0])
|
---|
| 217 | mod = os.path.splitext(pth)[0]
|
---|
| 218 | sys.path.insert(2, os.path.split(mod)[0])
|
---|
| 219 | __import__(os.path.split(mod)[1])
|
---|
| 220 | print "ok"
|
---|
| 221 | return 0
|
---|
| 222 | def test_str(target, source, env):
|
---|
| 223 | return "Testing module..."
|
---|
[1184] | 224 |
|
---|
[1195] | 225 | taction = Action(test_module, test_str)
|
---|
| 226 | env.AddPostAction(so, taction)
|
---|
| 227 |
|
---|
[1184] | 228 | # install targets
|
---|
[1740] | 229 | installs = []
|
---|
| 230 | installs.append(env.Install("$moduledir/asap", so))
|
---|
| 231 | installs.append(env.Install("$moduledir/asap", env.SGlob("python/*.py")))
|
---|
| 232 | installs.append(env.Install("$prefix/bin",
|
---|
| 233 | ["bin/asap", "bin/asap_update_data"]))
|
---|
| 234 | installs.append(env.Install("$moduledir/asap/data", "share/ipythonrc-asap"))
|
---|
| 235 | installs.append(env.Install("$moduledir/asap/data", "share/ipy_user_conf.py"))
|
---|
| 236 | env.Alias('install', installs)
|
---|
[1184] | 237 |
|
---|
| 238 | # install aips++ data repos
|
---|
[1740] | 239 | rootdir = None
|
---|
[1184] | 240 | outdir = os.path.join(env["moduledir"],'asap','data')
|
---|
| 241 | sources = ['ephemerides','geodetic']
|
---|
| 242 | if os.path.exists("/nfs/aips++/data"):
|
---|
| 243 | rootdir = "/nfs/aips++/data"
|
---|
| 244 | elif os.path.exists("data"):
|
---|
[1195] | 245 | rootdir = "./data"
|
---|
[1184] | 246 | if rootdir is not None:
|
---|
| 247 | ofiles, ifiles = env.WalkDirTree(outdir, rootdir, sources)
|
---|
| 248 | data = env.InstallAs(ofiles, ifiles)
|
---|
| 249 | env.Alias('install', data)
|
---|
[1202] | 250 |
|
---|
[1177] | 251 | # make binary distribution
|
---|
| 252 | if len(env["makedist"]):
|
---|
[2179] | 253 | env["stagedir"] = "asap-%s" % (env["version"])
|
---|
[1184] | 254 | env.Command('Staging distribution for archive in %s' % env["stagedir"],
|
---|
| 255 | '', env.MessageAction)
|
---|
[2179] | 256 | env.QInstall("$stagedir/asap", [so, env.SGlob("python/*.py")] )
|
---|
[1184] | 257 | env.QInstall("$stagedir/bin", ["bin/asap", "bin/asap_update_data"])
|
---|
[2166] | 258 | env.QInstall("$stagedir", ["packaging/setup.py"])
|
---|
[2179] | 259 | env.QInstall("$stagedir/debian", env.SGlob("packaging/debian/*") )
|
---|
[1195] | 260 | env.QInstall("$stagedir/asap/data", "share/ipythonrc-asap")
|
---|
[1511] | 261 | env.QInstall("$stagedir/asap/data", "share/ipy_user_conf.py")
|
---|
[1195] | 262 | if rootdir is not None:
|
---|
[1202] | 263 | # This creates a directory Using data table... - disabled
|
---|
| 264 | #env.Command("Using data tables in %s" % rootdir,
|
---|
| 265 | # '', env.MessageAction)
|
---|
[1184] | 266 | outdir = os.path.join(env["stagedir"],'asap','data')
|
---|
| 267 | ofiles, ifiles = env.WalkDirTree(outdir, rootdir, sources)
|
---|
| 268 | env.QInstallAs(ofiles, ifiles)
|
---|
[1195] | 269 | else:
|
---|
| 270 | env.Command("No data tables available. Use 'asap_update_data' after install",
|
---|
[1202] | 271 | '', env.MessageAction)
|
---|
[2321] | 272 | # arch = env.Archiver(os.path.join("dist",
|
---|
| 273 | # env["stagedir"]+"_"+env["makedist"]),
|
---|
| 274 | # env["stagedir"])
|
---|
[2179] | 275 | # env.AddPostAction(arch, Delete("$stagedir"))
|
---|
[1195] | 276 |
|
---|
[1406] | 277 | if env["apps"]:
|
---|
| 278 | env.SConscript("apps/SConscript")
|
---|
| 279 |
|
---|
[1195] | 280 | if env.GetOption("clean"):
|
---|
| 281 | Execute(Delete(".sconf_temp"))
|
---|
[2166] | 282 |
|
---|
| 283 | if env["makedoc"].lower() != "none":
|
---|
| 284 | env.SConscript("doc/SConscript")
|
---|