2017-11-20 21:54:09 +00:00
|
|
|
#!/usr/bin/env python
|
2017-02-26 22:59:22 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2017-11-19 17:30:21 +00:00
|
|
|
try:
|
|
|
|
from urllib2 import urlopen # Python 2
|
|
|
|
except ImportError:
|
|
|
|
from urllib.request import urlopen # Python 3
|
|
|
|
|
2017-03-17 02:55:59 +00:00
|
|
|
import os.path
|
2017-11-26 22:43:59 +00:00
|
|
|
import string
|
|
|
|
import subprocess
|
2017-03-17 02:55:59 +00:00
|
|
|
import sys
|
2017-12-14 22:35:21 +00:00
|
|
|
import re
|
2017-12-17 18:14:30 +00:00
|
|
|
import ctypes
|
|
|
|
import shutil
|
2017-03-04 01:45:20 +00:00
|
|
|
|
2017-11-26 22:43:59 +00:00
|
|
|
VERSION = '0.0.1'
|
|
|
|
APPNAME = 'cquery'
|
2017-02-26 22:59:22 +00:00
|
|
|
|
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
|
|
|
|
2017-03-17 02:55:59 +00:00
|
|
|
|
|
|
|
# Example URLs
|
2017-09-13 05:29:49 +00:00
|
|
|
# http://releases.llvm.org/5.0.0/clang+llvm-5.0.0-linux-x86_64-ubuntu16.04.tar.xz
|
|
|
|
# http://releases.llvm.org/5.0.0/clang+llvm-5.0.0-linux-x86_64-ubuntu14.04.tar.xz
|
|
|
|
# http://releases.llvm.org/5.0.0/clang+llvm-5.0.0-x86_64-apple-darwin.tar.xz
|
2017-11-26 22:43:59 +00:00
|
|
|
|
2017-12-17 18:14:30 +00:00
|
|
|
CLANG_TARBALL_EXT = '.tar.xz'
|
2017-11-26 22:43:59 +00:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
CLANG_TARBALL_NAME = 'clang+llvm-$version-x86_64-apple-darwin'
|
|
|
|
elif sys.platform.startswith('freebsd'):
|
|
|
|
CLANG_TARBALL_NAME = 'clang+llvm-$version-amd64-unknown-freebsd10'
|
|
|
|
# It is either 'linux2' or 'linux3' before Python 3.3
|
|
|
|
elif sys.platform.startswith('linux'):
|
|
|
|
# These executable depend on libtinfo.so.5
|
|
|
|
CLANG_TARBALL_NAME = 'clang+llvm-$version-linux-x86_64-ubuntu14.04'
|
2017-12-17 18:14:30 +00:00
|
|
|
elif sys.platform == 'win32':
|
|
|
|
CLANG_TARBALL_NAME = 'LLVM-$version-win64'
|
|
|
|
CLANG_TARBALL_EXT = '.exe'
|
2017-03-17 02:55:59 +00:00
|
|
|
else:
|
|
|
|
sys.stderr.write('ERROR: Unknown platform {0}\n'.format(sys.platform))
|
|
|
|
sys.exit(1)
|
|
|
|
|
2017-03-04 01:45:20 +00:00
|
|
|
from waflib.Tools.compiler_cxx import cxx_compiler
|
|
|
|
cxx_compiler['linux'] = ['clang++', 'g++']
|
|
|
|
|
2017-12-17 18:14:30 +00:00
|
|
|
if sys.version_info < (3, 0):
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
kdll = ctypes.windll.kernel32
|
|
|
|
def symlink(source, link_name, target_is_directory=False):
|
|
|
|
# SYMBOLIC_LINK_FLAG_DIRECTORY: 0x1
|
|
|
|
SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE = 0x2
|
|
|
|
flags = int(target_is_directory)
|
|
|
|
ret = kdll.CreateSymbolicLinkA(link_name, source, flags)
|
|
|
|
if ret == 0:
|
|
|
|
err = ctypes.WinError()
|
|
|
|
ERROR_PRIVILEGE_NOT_HELD = 1314
|
|
|
|
# Creating symbolic link on Windows requires a special priviledge SeCreateSymboliclinkPrivilege,
|
|
|
|
# which an non-elevated process lacks. Starting with Windows 10 build 14972, this got relaxed
|
|
|
|
# when Developer Mode is enabled. Triggering this new behaviour requires a new flag. Try again.
|
|
|
|
if err[0] == ERROR_PRIVILEGE_NOT_HELD:
|
|
|
|
flags |= SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE
|
|
|
|
ret = kdll.CreateSymbolicLinkA(link_name, source, flags)
|
|
|
|
if ret != 0:
|
|
|
|
return
|
|
|
|
err = ctypes.WinError()
|
|
|
|
raise err
|
|
|
|
else:
|
|
|
|
# Python 3 compatibility
|
|
|
|
real_symlink = os.symlink
|
|
|
|
def symlink(source, link_name, target_is_directory=False):
|
|
|
|
return real_symlink(source, link_name)
|
|
|
|
os.symlink = symlink
|
|
|
|
|
2017-02-26 22:59:22 +00:00
|
|
|
def options(opt):
|
|
|
|
opt.load('compiler_cxx')
|
2017-11-26 17:13:43 +00:00
|
|
|
grp = opt.add_option_group('Configuration options related to use of clang from the system (not recommended)')
|
|
|
|
grp.add_option('--use-system-clang', dest='use_system_clang', default=False, action='store_true',
|
|
|
|
help='enable use of clang from the system')
|
2017-12-17 03:39:51 +00:00
|
|
|
grp.add_option('--bundled-clang', dest='bundled_clang', default='4.0.0',
|
2017-12-17 20:40:21 +00:00
|
|
|
help='bundled clang version, downloaded from https://releases.llvm.org/ , e.g. 4.0.0 5.0.0')
|
2017-11-26 17:13:43 +00:00
|
|
|
grp.add_option('--llvm-config', dest='llvm_config', default='llvm-config',
|
|
|
|
help='specify path to llvm-config for automatic configuration [default: %default]')
|
|
|
|
grp.add_option('--clang-prefix', dest='clang_prefix', default='',
|
|
|
|
help='enable fallback configuration method by specifying a clang installation prefix (e.g. /opt/llvm)')
|
2017-12-12 05:14:13 +00:00
|
|
|
grp.add_option('--variant', default='release',
|
2017-12-12 04:36:53 +00:00
|
|
|
help='variant name for saving configuration and build results. Variants other than "debug" turn on -O3')
|
2017-02-26 22:59:22 +00:00
|
|
|
|
2017-12-17 18:14:30 +00:00
|
|
|
def download_and_extract(destdir, url, ext):
|
|
|
|
dest = destdir + ext
|
2017-05-13 21:35:02 +00:00
|
|
|
# Download and save the compressed tarball as |compressed_file_name|.
|
|
|
|
if not os.path.isfile(dest):
|
|
|
|
print('Downloading tarball')
|
|
|
|
print(' destination: {0}'.format(dest))
|
|
|
|
print(' source: {0}'.format(url))
|
|
|
|
# TODO: verify checksum
|
|
|
|
response = urlopen(url)
|
|
|
|
with open(dest, 'wb') as f:
|
|
|
|
f.write(response.read())
|
|
|
|
else:
|
|
|
|
print('Found tarball at {0}'.format(dest))
|
|
|
|
|
|
|
|
# Extract the tarball.
|
|
|
|
if not os.path.isdir(destdir):
|
|
|
|
print('Extracting')
|
|
|
|
# TODO: make portable.
|
2017-12-17 18:14:30 +00:00
|
|
|
if ext == '.exe':
|
|
|
|
subprocess.call(['7z', 'x', '-o{0}'.format(destdir), '-xr!$PLUGINSDIR', dest])
|
|
|
|
else:
|
|
|
|
subprocess.call(['tar', '-x', '-C', out, '-f', dest])
|
2017-05-13 21:35:02 +00:00
|
|
|
else:
|
|
|
|
print('Found extracted at {0}'.format(destdir))
|
|
|
|
|
2017-12-12 04:36:53 +00:00
|
|
|
def configure(ctx):
|
|
|
|
ctx.resetenv(ctx.options.variant)
|
2017-02-26 22:59:22 +00:00
|
|
|
|
2017-12-12 04:36:53 +00:00
|
|
|
ctx.load('compiler_cxx')
|
2017-12-17 18:14:30 +00:00
|
|
|
cxxflags = ['-g', '-std=c++11', '-Wall', '-Wno-sign-compare', '-Werror']
|
|
|
|
# /Zi: -g, /WX: -Werror, /W3: roughly -Wall, there is no -std=c++11 equivalent in MSVC.
|
|
|
|
# /wd4722: ignores warning C4722 (destructor never returns) in loguru
|
|
|
|
# /wd4267: ignores warning C4267 (conversion from 'size_t' to 'type'), roughly -Wno-sign-compare
|
|
|
|
msvcflags = ['/nologo', '/FS', '/EHsc', '/Zi', '/W3', '/WX', '/wd4996', '/wd4722', '/wd4267', '/wd4800']
|
|
|
|
if ctx.options.variant != 'debug':
|
|
|
|
cxxflags.append('-O3')
|
|
|
|
msvcflags.append('/O2') # There is no O3
|
|
|
|
if ctx.env.CXX_NAME != 'msvc':
|
2017-12-17 03:39:51 +00:00
|
|
|
# If environment variable CXXFLAGS is unset, provide a sane default.
|
2017-12-17 18:14:30 +00:00
|
|
|
if not ctx.env.CXXFLAGS:
|
2017-12-17 03:39:51 +00:00
|
|
|
ctx.env.CXXFLAGS = cxxflags
|
2017-12-17 18:14:30 +00:00
|
|
|
else:
|
|
|
|
ctx.env.CXXFLAGS = msvcflags
|
2017-12-12 04:36:53 +00:00
|
|
|
|
|
|
|
ctx.check(header_name='stdio.h', features='cxx cxxprogram', mandatory=True)
|
|
|
|
|
|
|
|
ctx.load('clang_compilation_database', tooldir='.')
|
|
|
|
|
|
|
|
ctx.env['use_system_clang'] = ctx.options.use_system_clang
|
2017-12-15 01:45:15 +00:00
|
|
|
ctx.env['bundled_clang'] = ctx.options.bundled_clang
|
2017-12-17 18:14:30 +00:00
|
|
|
def libname(lib):
|
|
|
|
# Newer MinGW and MSVC both wants full file name
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
return 'lib' + lib
|
|
|
|
return lib
|
2017-12-12 04:36:53 +00:00
|
|
|
if ctx.options.use_system_clang:
|
2017-11-26 17:13:43 +00:00
|
|
|
# Ask llvm-config for cflags and ldflags
|
2017-12-12 04:36:53 +00:00
|
|
|
ctx.find_program(ctx.options.llvm_config, msg='checking for llvm-config', var='LLVM_CONFIG', mandatory=False)
|
|
|
|
if ctx.env.LLVM_CONFIG:
|
|
|
|
ctx.check_cfg(msg='Checking for clang flags',
|
|
|
|
path=ctx.env.LLVM_CONFIG,
|
2017-11-26 17:13:43 +00:00
|
|
|
package='',
|
|
|
|
uselib_store='clang',
|
|
|
|
args='--cppflags --ldflags')
|
|
|
|
# llvm-config does not provide the actual library we want so we check for it
|
|
|
|
# using the provided info so far.
|
2017-12-17 18:14:30 +00:00
|
|
|
ctx.check_cxx(lib=libname('clang'), uselib_store='clang', use='clang')
|
2017-11-26 17:13:43 +00:00
|
|
|
|
|
|
|
else: # Fallback method using a prefix path
|
2017-12-12 04:36:53 +00:00
|
|
|
ctx.start_msg('Checking for clang prefix')
|
|
|
|
if not ctx.options.clang_prefix:
|
|
|
|
raise ctx.errors.ConfigurationError('not found (--clang-prefix must be specified when llvm-config is not found)')
|
2017-11-26 17:13:43 +00:00
|
|
|
|
2017-12-12 04:36:53 +00:00
|
|
|
prefix = ctx.root.find_node(ctx.options.clang_prefix)
|
2017-11-26 17:13:43 +00:00
|
|
|
if not prefix:
|
2017-12-12 04:36:53 +00:00
|
|
|
raise ctx.errors.ConfigurationError('clang prefix not found: "%s"'%ctx.options.clang_prefix)
|
2017-11-26 17:13:43 +00:00
|
|
|
|
2017-12-12 04:36:53 +00:00
|
|
|
ctx.end_msg(prefix)
|
2017-11-26 17:13:43 +00:00
|
|
|
|
|
|
|
includes = [ n.abspath() for n in [ prefix.find_node('include') ] if n ]
|
|
|
|
libpath = [ n.abspath() for n in [ prefix.find_node(l) for l in ('lib', 'lib64')] if n ]
|
2017-12-17 18:14:30 +00:00
|
|
|
ctx.check_cxx(msg='Checking for library clang', lib=libname('clang'), uselib_store='clang', includes=includes, libpath=libpath)
|
2017-11-26 17:13:43 +00:00
|
|
|
|
|
|
|
else:
|
2017-11-26 22:43:59 +00:00
|
|
|
global CLANG_TARBALL_NAME
|
|
|
|
|
|
|
|
# TODO Remove these after dropping clang 4 (after we figure out how to index Chrome)
|
2017-12-12 04:36:53 +00:00
|
|
|
if ctx.options.bundled_clang[0] == '4':
|
2017-12-17 18:14:30 +00:00
|
|
|
CLANG_TARBALL_EXT = '.tar.xz'
|
2017-11-26 22:43:59 +00:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
CLANG_TARBALL_NAME = 'clang+llvm-$version-x86_64-apple-darwin'
|
2017-12-17 20:40:21 +00:00
|
|
|
elif sys.platform.startswith('freebsd'):
|
|
|
|
CLANG_TARBALL_NAME = 'clang+llvm-$version-amd64-unknown-freebsd10'
|
2017-11-26 22:43:59 +00:00
|
|
|
elif sys.platform.startswith('linux'):
|
|
|
|
# These executable depend on libtinfo.so.5
|
|
|
|
CLANG_TARBALL_NAME = 'clang+llvm-$version-x86_64-linux-gnu-ubuntu-14.04'
|
2017-12-17 18:14:30 +00:00
|
|
|
elif sys.platform == 'win32':
|
|
|
|
CLANG_TARBALL_NAME = 'LLVM-$version-win64'
|
|
|
|
CLANG_TARBALL_EXT = '.exe'
|
2017-11-26 22:43:59 +00:00
|
|
|
else:
|
2017-12-17 20:40:21 +00:00
|
|
|
sys.stderr.write('ERROR: releases.llvm.org does not provide pre-built binaries for your platform {0}\n'.format(sys.platform))
|
2017-11-26 22:43:59 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
2017-12-12 04:36:53 +00:00
|
|
|
CLANG_TARBALL_NAME = string.Template(CLANG_TARBALL_NAME).substitute(version=ctx.options.bundled_clang)
|
2017-11-26 22:43:59 +00:00
|
|
|
# Directory clang has been extracted to.
|
|
|
|
CLANG_DIRECTORY = '{0}/{1}'.format(out, CLANG_TARBALL_NAME)
|
|
|
|
# URL of the tarball to download.
|
2017-12-17 18:14:30 +00:00
|
|
|
CLANG_TARBALL_URL = 'http://releases.llvm.org/{0}/{1}{2}'.format(ctx.options.bundled_clang, CLANG_TARBALL_NAME, CLANG_TARBALL_EXT)
|
2017-11-26 22:43:59 +00:00
|
|
|
|
2017-11-26 17:13:43 +00:00
|
|
|
print('Checking for clang')
|
2017-12-17 18:14:30 +00:00
|
|
|
download_and_extract(CLANG_DIRECTORY, CLANG_TARBALL_URL, CLANG_TARBALL_EXT)
|
2017-12-13 18:53:42 +00:00
|
|
|
bundled_clang_dir = os.path.join(out, ctx.options.variant, 'lib', CLANG_TARBALL_NAME)
|
|
|
|
try:
|
|
|
|
os.makedirs(os.path.dirname(bundled_clang_dir))
|
|
|
|
except OSError:
|
|
|
|
pass
|
2017-12-17 18:14:30 +00:00
|
|
|
clang_dir = os.path.normpath('../../' + CLANG_TARBALL_NAME)
|
2017-12-13 18:53:42 +00:00
|
|
|
try:
|
2017-12-17 18:14:30 +00:00
|
|
|
os.symlink(clang_dir, bundled_clang_dir, target_is_directory=True)
|
|
|
|
except NotImplementedError:
|
|
|
|
# Copying the whole directory instead.
|
|
|
|
shutil.copytree(clang_dir, bundled_clang_dir)
|
2017-12-13 18:53:42 +00:00
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
clang_node = ctx.path.find_dir(bundled_clang_dir)
|
2017-12-12 04:36:53 +00:00
|
|
|
ctx.check_cxx(uselib_store='clang',
|
|
|
|
includes=clang_node.find_dir('include').abspath(),
|
|
|
|
libpath=clang_node.find_dir('lib').abspath(),
|
2017-12-17 18:14:30 +00:00
|
|
|
lib=libname('clang'))
|
2017-11-26 17:13:43 +00:00
|
|
|
|
2017-12-12 04:36:53 +00:00
|
|
|
ctx.msg('Clang includes', ctx.env.INCLUDES_clang)
|
|
|
|
ctx.msg('Clang library dir', ctx.env.LIBPATH_clang)
|
2017-05-13 21:35:02 +00:00
|
|
|
|
2017-02-26 22:59:22 +00:00
|
|
|
def build(bld):
|
2017-12-05 08:05:08 +00:00
|
|
|
cc_files = bld.path.ant_glob(['src/*.cc', 'src/messages/*.cc'])
|
2017-04-11 16:57:51 +00:00
|
|
|
|
2017-11-26 17:13:43 +00:00
|
|
|
lib = []
|
2017-11-26 22:43:59 +00:00
|
|
|
if sys.platform.startswith('linux'):
|
2017-04-11 16:57:51 +00:00
|
|
|
lib.append('rt')
|
|
|
|
lib.append('pthread')
|
2017-07-30 04:46:21 +00:00
|
|
|
lib.append('dl')
|
2017-12-17 20:40:21 +00:00
|
|
|
elif sys.platform.startswith('freebsd'):
|
|
|
|
# loguru::stacktrace_as_stdstring calls backtrace_symbols
|
|
|
|
lib.append('execinfo')
|
|
|
|
|
|
|
|
lib.append('pthread')
|
|
|
|
lib.append('thr')
|
2017-04-11 16:57:51 +00:00
|
|
|
elif sys.platform == 'darwin':
|
|
|
|
lib.append('pthread')
|
|
|
|
|
2017-12-13 18:53:42 +00:00
|
|
|
clang_tarball_name = None
|
2017-12-14 22:35:21 +00:00
|
|
|
# Fallback for windows
|
2017-12-17 18:14:30 +00:00
|
|
|
default_resource_directory = os.path.join(os.getcwd(), 'clang_resource_dir')
|
2017-12-13 18:53:42 +00:00
|
|
|
if bld.env['use_system_clang']:
|
2017-12-18 03:22:07 +00:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
rpath = bld.env['LIBPATH_clang'][0]
|
|
|
|
else:
|
|
|
|
rpath = []
|
2017-12-14 22:35:21 +00:00
|
|
|
|
2017-12-17 18:14:30 +00:00
|
|
|
devnull = '/dev/null' if sys.platform != 'win32' else 'NUL'
|
|
|
|
output = subprocess.check_output(['clang', '-###', '-xc', devnull], stderr=subprocess.STDOUT).decode()
|
2017-12-14 22:35:21 +00:00
|
|
|
match = re.search(r'"-resource-dir" "([^"]*)"', output, re.M | re.I)
|
|
|
|
if match:
|
|
|
|
default_resource_directory = match.group(1)
|
|
|
|
else:
|
|
|
|
print("Failed to found system clang resource directory. Falling back.")
|
2017-12-13 18:53:42 +00:00
|
|
|
elif sys.platform.startswith('freebsd') or sys.platform.startswith('linux'):
|
|
|
|
clang_tarball_name = os.path.basename(os.path.dirname(bld.env['LIBPATH_clang'][0]))
|
|
|
|
rpath = '$ORIGIN/../lib/' + clang_tarball_name + '/lib'
|
2017-12-15 01:45:15 +00:00
|
|
|
default_resource_directory = '../lib/{}/lib/clang/{}'.format(clang_tarball_name, bld.env['bundled_clang'])
|
2017-12-14 22:35:21 +00:00
|
|
|
elif sys.platform == 'darwin':
|
|
|
|
clang_tarball_name = os.path.basename(os.path.dirname(bld.env['LIBPATH_clang'][0]))
|
|
|
|
rpath = '@loader_path/../lib/' + clang_tarball_name + '/lib'
|
2017-12-15 01:45:15 +00:00
|
|
|
default_resource_directory = '../lib/{}/lib/clang/{}'.format(clang_tarball_name, bld.env['bundled_clang'])
|
2017-12-17 18:14:30 +00:00
|
|
|
elif sys.platform == 'win32':
|
|
|
|
rpath = [] # Unsupported
|
|
|
|
name = os.path.basename(os.path.dirname(bld.env['LIBPATH_clang'][0]))
|
|
|
|
# Poor Windows users' RPATH
|
|
|
|
out_clang_dll = os.path.join(bld.path.get_bld().abspath(), 'bin', 'libclang.dll')
|
|
|
|
try:
|
|
|
|
os.makedirs(os.path.dirname(out_clang_dll))
|
|
|
|
os.symlink(os.path.join(bld.path.get_bld().abspath(), 'lib', name, 'bin', 'libclang.dll'), out_clang_dll)
|
|
|
|
except OSError:
|
|
|
|
pass
|
2017-12-13 18:53:42 +00:00
|
|
|
else:
|
|
|
|
rpath = bld.env['LIBPATH_clang']
|
2017-02-26 22:59:22 +00:00
|
|
|
bld.program(
|
|
|
|
source=cc_files,
|
2017-11-26 17:13:43 +00:00
|
|
|
use='clang',
|
2017-03-28 01:04:37 +00:00
|
|
|
includes=[
|
2017-12-05 08:05:08 +00:00
|
|
|
'src/',
|
2017-03-28 01:04:37 +00:00
|
|
|
'third_party/',
|
|
|
|
'third_party/doctest/',
|
2017-07-30 04:46:21 +00:00
|
|
|
'third_party/loguru/',
|
2017-04-19 17:06:39 +00:00
|
|
|
'third_party/rapidjson/include/',
|
2017-11-26 17:13:43 +00:00
|
|
|
'third_party/sparsepp/'],
|
2017-12-14 22:35:21 +00:00
|
|
|
defines=['LOGURU_WITH_STREAMS=1',
|
|
|
|
'DEFAULT_RESOURCE_DIRECTORY="' + default_resource_directory + '"'],
|
2017-04-11 16:57:51 +00:00
|
|
|
lib=lib,
|
2017-12-13 18:53:42 +00:00
|
|
|
rpath=rpath,
|
2017-12-12 05:14:13 +00:00
|
|
|
target='bin/cquery')
|
2017-02-26 22:59:22 +00:00
|
|
|
|
2017-12-14 22:35:21 +00:00
|
|
|
if clang_tarball_name is not None:
|
|
|
|
bld.install_files('${PREFIX}/lib/' + clang_tarball_name + '/lib', bld.path.get_bld().ant_glob('lib/' + clang_tarball_name + '/lib/libclang.(dylib|so.[4-9])', quiet=True))
|
2017-12-15 01:45:15 +00:00
|
|
|
if bld.cmd == 'install':
|
|
|
|
# TODO This may be cached and cannot be re-triggered. Use proper shell escape.
|
2017-12-17 03:39:51 +00:00
|
|
|
bld(rule='rsync -rtR {}/./lib/{}/lib/clang/*/include {}/'.format(bld.path.get_bld(), clang_tarball_name, bld.env['PREFIX']))
|
2017-12-13 18:53:42 +00:00
|
|
|
|
2017-02-26 22:59:22 +00:00
|
|
|
#bld.shlib(source='a.cpp', target='mylib', vnum='9.8.7')
|
|
|
|
#bld.shlib(source='a.cpp', target='mylib2', vnum='9.8.7', cnum='9.8')
|
|
|
|
#bld.shlib(source='a.cpp', target='mylib3')
|
|
|
|
#bld.program(source=cc_files, target='app', use='mylib')
|
|
|
|
#bld.stlib(target='foo', source='b.cpp')
|
|
|
|
|
|
|
|
# just a test to check if the .c is compiled as c++ when no c compiler is found
|
|
|
|
#bld.program(features='cxx cxxprogram', source='main.c', target='app2')
|
|
|
|
|
|
|
|
#if bld.cmd != 'clean':
|
|
|
|
# from waflib import Logs
|
|
|
|
# bld.logger = Logs.make_logger('test.log', 'build') # just to get a clean output
|
|
|
|
# bld.check(header_name='sadlib.h', features='cxx cxxprogram', mandatory=False)
|
|
|
|
# bld.logger = None
|
|
|
|
|
2017-12-12 04:36:53 +00:00
|
|
|
def init(ctx):
|
|
|
|
from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext
|
|
|
|
for y in (BuildContext, CleanContext, InstallContext, UninstallContext):
|
|
|
|
class tmp(y):
|
|
|
|
variant = ctx.options.variant
|
|
|
|
|
|
|
|
# This is needed because waf initializes the ConfigurationContext with
|
|
|
|
# an arbitrary setenv('') which would rewrite the previous configuration
|
|
|
|
# cache for the default variant if the configure step finishes.
|
|
|
|
# Ideally ConfigurationContext should just let us override this at class
|
|
|
|
# level like the other Context subclasses do with variant
|
|
|
|
from waflib.Configure import ConfigurationContext
|
|
|
|
class cctx(ConfigurationContext):
|
|
|
|
def resetenv(self, name):
|
|
|
|
self.all_envs = {}
|
|
|
|
self.setenv(name)
|