1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
#!/usr/bin/python3
"""Configure the build.
- Fetch boost/gtest.
- Create defines.mk
"""
import argparse
import subprocess
import contextlib
import os
import sys
ROOT = os.path.abspath(os.path.dirname(__file__))
def log(msg):
sys.stderr.write(msg)
sys.stderr.write('\n')
def shell(cmd):
log(cmd)
status, output = subprocess.getstatusoutput(cmd)
if status:
raise Exception('%d <-| %r' %(status, cmd))
return output
def system(cmd):
log(cmd)
status = os.system(cmd)
if status:
raise Exception('%d <- %r' %(status, cmd))
return
def mkdirs(path):
if not os.path.isdir(path):
os.makedirs(path)
@contextlib.contextmanager
def cd(nwd):
cwd = os.getcwd()
log('cd %r -> %r' %(cwd, nwd))
os.chdir(nwd)
yield
os.chdir(cwd)
log('cd %r <- %r' %(cwd, nwd))
def fetch_gtest(build_dir):
gtest_version = '1.7.0'
gtest_uri = 'https://github.com/google/googletest/archive/release-%s.zip' %gtest_version
gdir = os.path.join(build_dir, 'test', 'cpp', 'googletest-release-%s' % gtest_version)
if not os.path.isdir(gdir):
#mkdirs(gdir)
zipfile = gdir + '.zip'
if not os.path.isfile(zipfile):
get_gtest_cmd = 'curl -L %s --output %s' %(gtest_uri, zipfile)
system(get_gtest_cmd)
install_gtest_cmd = 'unzip -q %s -d %s' %(zipfile, os.path.join(build_dir, 'test', 'cpp'))
system(install_gtest_cmd)
assert os.path.isdir(gdir)
return gdir
def fetch_boost_headers(build_dir):
"""Fetch into {build_dir}/src/cpp/third-party/
Return actual directory path, relative to subdirs.
"""
uri = 'https://www.dropbox.com/s/g22iayi83p5gbbq/boost_1_58_0-headersonly.tbz2?dl=0'
hdir = os.path.join(build_dir, 'src', 'cpp', 'third-party', 'boost_1_58_0-headersonly')
if not os.path.isdir(hdir):
mkdirs(os.path.dirname(hdir))
#get_boost_cmd = 'curl -L %s | tar xjf -C src/cpp/third-party -' %uri
tbz = os.path.join(build_dir, 'src', 'cpp', 'third-party', 'boost_1_58_0-headersonly.tbz2')
if not os.path.isfile(tbz):
get_boost_cmd = 'curl -L %s --output %s' %(uri, tbz)
system(get_boost_cmd)
install_boost_cmd = 'tar vxjf %s -C %s/src/cpp/third-party | head' %(tbz, build_dir)
system(install_boost_cmd)
assert os.path.isdir(hdir)
return hdir
def update_content(fn, content):
current_content = open(fn).read() if os.path.exists(fn) else None
if content != current_content:
log('writing to %r' %fn)
log('"""\n' + content + '"""')
open(fn, 'w').write(content)
def compose_defines_with_hdf_headers(HDF_HEADERS):
thisdir = os.path.dirname(os.path.abspath(__file__))
return """
HDF_HEADERS:=%(HDF_HEADERS)s
#HDF5_INCLUDE?=${HDF_HEADERS}/src
CPPFLAGS+=-I${HDF_HEADERS}/src -I${HDF_HEADERS}/c++/src
CPPFLAGS+=-I../pbdata -I../hdf -I../alignment
LIBBLASR_LIB ?=../pbdata/libblasr.so
"""%(dict(thisdir=thisdir, HDF_HEADERS=HDF_HEADERS))
def compose_defines():
"""
Note that our local 'hdf' subdir will not even build
in this case.
"""
thisdir = os.path.dirname(os.path.abspath(__file__))
return """
LIBBLASR_INCLUDE ?=../alignment
LIBBLASR_LIB ?=%(thisdir)s/pbdata/libblasr.so
nohdf ?=1
"""%(dict(thisdir=thisdir))
def ifenvf(env, key, func):
if key in env:
return env[key]
else:
return func()
def setifenvf(envout, envin, key, func):
envout[key] = ifenvf(envin, key, func)
def setifenv(envout, envin, key, val):
envout[key] = envin.get(key, val)
def setenv(envout, key, val):
envout[key] = val
def update_env_if(envout, envin, keys):
for key in keys:
if key in envin:
envout[key] = envin[key]
def compose_defs_env(env):
# We disallow env overrides for anything with a default from GNU make.
nons = ['CXX', 'CC', 'AR'] # 'SHELL'?
ovr = ['%-20s ?= %s' %(k, v) for k,v in sorted(env.items()) if k not in nons]
nonovr = ['%-20s := %s' %(k, v) for k,v in sorted(env.items()) if k in nons]
return '\n'.join(ovr + nonovr + [''])
def compose_defines_pacbio(envin):
"""
This is used by mobs via buildcntl.sh.
"""
env = dict()
#setifenv(env, envin, 'LIBPBDATA_INCLUDE', '../pbdata')
#setifenv(env, envin, 'LIBPBIHDF_INCLUDE', '../hdf')
#setifenv(env, envin, 'LIBBLASR_INCLUDE', '../alignment')
#setifenv(env, envin, 'LIBPBDATA_LIB', '../pbdata/libpbdata.so')
#setifenv(env, envin, 'LIBPBIHDF_LIB', '../hdf/libpbihdf.so')
#setifenv(env, envin, 'LIBBLASR_LIB', '../alignment/libblasr.so')
#setifenv(env, envin, 'nohdf', '1')
possibs = set([
'CC', 'CXX', 'AR',
'GTEST_INCLUDE', 'GTEST_SRC',
'LIBBLASR_INCLUDE', 'LIBBLASR_LIB', 'LIBBLASR_LIBFLAGS',
'LIBPBDATA_INCLUDE', 'LIBPBDATA_LIB', 'LIBPBDATA_LIBFLAGS',
'LIBPBIHDF_INCLUDE', 'LIBPBIHDF_LIB', 'LIBPBIHDF_LIBFLAGS',
'HDF5_INCLUDE', 'HDF5_LIB', 'HDF5_LIBFLAGS',
'PBBAM_INCLUDE', 'PBBAM_LIB', 'PBBAM_LIBFLAGS',
'HTSLIB_CFLAGS', 'HTSLIB_LIBS',
'BOOST_INCLUDE', 'PTHREAD_LIBFLAGS',
'ZLIB_LIB', 'ZLIB_LIBFLAGS',
'GCC_LIB',
'DAZZ_DB_SRC', 'DAZZ_DB_INCLUDE',
'DALIGNER_SRC', 'DALIGNER_INCLUDE',
])
update_env_if(env, envin, possibs)
return compose_defs_env(env)
def configure_pacbio(envin, shared, build_dir):
content1 = compose_defines_pacbio(envin)
if shared:
content1 += 'LDLIBS+=-lrt\n'
update_content(os.path.join(build_dir, 'defines.mk'), content1)
def get_make_style_env(envin, args):
envout = dict()
for arg in args:
if '=' in arg:
k, v = arg.split('=')
envout[k] = v
envout.update(envin)
return envout
class OsType:
Unknown, Linux, Darwin = list(range(3))
def getOsType():
uname = shell('uname -s')
log('uname=%r' %uname)
if 'Darwin' in uname:
return OsType.Darwin
elif 'Linux' in uname:
return OsType.Linux
else:
return OsType.Unknown
def update_env_for_linux(env):
env['SET_LIB_NAME'] = '-soname'
env['SH_LIB_EXT'] = '.so'
env['EXTRA_LDFLAGS'] = '-Wl,--no-as-needed'
def update_env_for_darwin(env):
env['SET_LIB_NAME'] = '-install_name'
env['SH_LIB_EXT'] = '.dylib'
env['EXTRA_LDFLAGS'] = '-flat_namespace'
# -flat_namespace makes BSD ld act like Linux ld, finding
# shared libs recursively.
def update_env_for_unknown(env):
env['SET_LIB_NAME'] = '-soname'
env['SH_LIB_EXT'] = '.so'
update_env_for_os = {
OsType.Linux: update_env_for_linux,
OsType.Darwin: update_env_for_darwin,
OsType.Unknown: update_env_for_unknown,
}
def parse_args(args):
parser = argparse.ArgumentParser()
parser.add_argument('--boost-headers', action='store_true',
help='Download Boost headers.')
parser.add_argument('--gtest', action='store_true',
help='Download google-test.')
parser.add_argument('--no-pbbam', action='store_true',
help='Avoid compiling anything which would need pbbam.')
parser.add_argument('--submodules', action='store_true',
help='Set variables to use our git-submodules, which must be pulled and built first. (Implies --no-pbbam.)')
parser.add_argument('--shared', action='store_true',
help='Build for dynamic linking.')
parser.add_argument('--mode', default='opt',
help='debug, opt, profile [default=%(default)s] CURRENTLY IGNORED')
parser.add_argument('--build-dir',
help='Can be different from source directory, but only when *not* also building submodule.')
parser.add_argument('makevars', nargs='*',
help='Variables in the style of make: FOO=val1 BAR=val2 etc.')
return parser.parse_args(args)
def set_defs_defaults(env, nopbbam):
defaults = {
'LIBBLASR_LIBFLAGS': '-lblasr',
'SHELL': 'bash -xe',
'DAZZ_DB_SRC': os.path.join(ROOT, '..', 'DAZZ_DB'),
'DALIGNER_SRC': os.path.join(ROOT, '..', 'DALIGNER'),
'DAZZ_DB_INCLUDE': '${DAZZ_DB_SRC}',
'DALIGNER_INCLUDE': '${DALIGNER_SRC}',
'PTHREAD_LIBFLAGS': '-lpthread',
}
pbbam_defaults = {
'PBBAM_LIBFLAGS': '-lpbbam',
'HTSLIB_LIBS': '-lhts',
'HDF5_LIBFLAGS': '-lhdf5_cpp -lhdf5',
'ZLIB_LIBFLAGS': '-lz',
'PTHREAD_LIBFLAGS': '-lpthread',
'DL_LIBFLAGS': '-ldl', # neeeded by HDF5 always
}
if not nopbbam:
defaults.update(pbbam_defaults)
for k in defaults:
if k not in env:
env[k] = defaults[k]
def set_defs_submodule_defaults(env, nopbbam):
libcpp = os.path.join(ROOT, 'blasr_libcpp')
daligner = os.path.join(ROOT, 'DALIGNER')
dazz_db = os.path.join(ROOT, 'DAZZ_DB')
defaults = {
'LIBPBDATA_INCLUDE': os.path.join(libcpp, 'pbdata'),
'LIBBLASR_INCLUDE': os.path.join(libcpp, 'alignment'),
'LIBPBIHDF_INCLUDE': '' if nopbbam else os.path.join(libcpp, 'hdf'),
'LIBBLASR_LIB': os.path.join(libcpp, 'alignment'),
'LIBPBIHDF_LIB': '' if nopbbam else os.path.join(libcpp, 'hdf'),
'DALIGNER_SRC': daligner,
'DAZZ_DB_SRC': dazz_db,
}
for k in defaults:
if k not in env:
env[k] = defaults[k]
def write_makefile(build_dir_root, src_dir_root, makefilename, relpath):
src_dir = os.path.join(src_dir_root, relpath)
build_dir = os.path.join(build_dir_root, relpath)
content = """\
vpath %%.cpp %(src_dir)s
vpath %%.c %(src_dir)s
include %(src_dir)s/%(makefilename)s
""" %dict(makefilename=makefilename, src_dir=src_dir)
mkdirs(build_dir)
fn = os.path.join(build_dir, makefilename)
update_content(fn, content)
def write_makefiles(build_dir):
write_makefile(build_dir, ROOT, 'makefile', '.')
write_makefile(build_dir, ROOT, 'makefile', 'src/cpp')
write_makefile(build_dir, ROOT, 'makefile', 'test/cpp')
def main(prog, *args):
"""We are still deciding what env-vars to use, if any.
"""
conf = parse_args(args)
envin = get_make_style_env(os.environ, conf.makevars)
ost = getOsType()
update_env_for_os[ost](envin)
if conf.build_dir is not None:
write_makefiles(conf.build_dir)
else:
conf.build_dir = '.'
conf.build_dir = os.path.abspath(conf.build_dir)
if conf.boost_headers:
envin['BOOST_INCLUDE'] = fetch_boost_headers(conf.build_dir)
if conf.gtest:
gtest_dir = fetch_gtest(conf.build_dir)
envin['GTEST_INCLUDE'] = os.path.join(gtest_dir, 'include')
envin['GTEST_SRC'] = os.path.join(gtest_dir, 'src')
if conf.submodules:
set_defs_submodule_defaults(envin, conf.no_pbbam)
conf.no_pbbam = True
set_defs_defaults(envin, conf.no_pbbam)
configure_pacbio(envin, conf.shared, conf.build_dir)
if __name__=="__main__":
main(*sys.argv)
|