2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-03-24 04:56:30 +03:00
# this is a base set of waf rules that everything else pulls in first
2010-04-22 06:03:22 +04:00
import sys, wafsamba, Configure
2010-03-24 04:56:30 +03:00
import Options, os, preproc
2010-03-28 07:09:36 +04:00
from samba_utils import *
2010-04-13 11:27:52 +04:00
from optparse import SUPPRESS_HELP
2010-03-24 04:56:30 +03:00
2010-04-22 06:03:22 +04:00
# this forces configure to be re-run if any of the configure
# sections of the build scripts change. We have to check
# for this in sys.argv as options have not yet been parsed when
# we need to set this. This is off by default until some issues
# are resolved related to WAFCACHE. It will need a lot of testing
# before it is enabled by default.
if '--enable-auto-reconfigure' in sys.argv:
Configure.autoconfig = True
2010-03-24 04:56:30 +03:00
def set_options(opt):
opt.tool_options('compiler_cc')
2010-03-27 13:28:59 +03:00
opt.tool_options('gnu_dirs')
2010-03-28 07:09:36 +04:00
2010-04-25 06:58:52 +04:00
gr = opt.option_group('library handling options')
2010-04-18 06:43:15 +04:00
gr.add_option('--bundled-libraries',
2010-03-28 09:38:27 +04:00
help=("comma separated list of bundled libraries. May include !LIBNAME to disable bundling a library. Can be 'NONE' or 'ALL' [auto]"),
2010-03-28 07:09:36 +04:00
action="store", dest='BUNDLED_LIBS', default='')
2010-03-28 08:41:49 +04:00
2010-10-24 01:26:43 +04:00
extension_default = Options.options['PRIVATE_EXTENSION_DEFAULT']
gr.add_option('--private-library-extension',
help=("name extension for private libraries [%s]" % extension_default),
action="store", dest='PRIVATE_EXTENSION', default=extension_default)
2010-03-28 08:41:49 +04:00
2010-10-24 01:26:43 +04:00
extension_exception = Options.options['PRIVATE_EXTENSION_EXCEPTION']
gr.add_option('--private-extension-exception',
help=("comma separated list of libraries to not apply extension to [%s]" % extension_exception),
action="store", dest='PRIVATE_EXTENSION_EXCEPTION', default=extension_exception)
2010-03-28 08:41:49 +04:00
builtin_defauilt = Options.options['BUILTIN_LIBRARIES_DEFAULT']
2010-04-18 06:43:15 +04:00
gr.add_option('--builtin-libraries',
2010-03-28 09:38:27 +04:00
help=("command separated list of libraries to build directly into binaries [%s]" % builtin_defauilt),
2010-03-28 08:41:49 +04:00
action="store", dest='BUILTIN_LIBRARIES', default=builtin_defauilt)
2010-03-28 07:09:36 +04:00
2010-04-18 06:43:15 +04:00
gr.add_option('--minimum-library-version',
2010-04-12 03:49:56 +04:00
help=("list of minimum system library versions (LIBNAME1:version,LIBNAME2:version)"),
action="store", dest='MINIMUM_LIBRARY_VERSION', default='')
2010-04-18 06:43:15 +04:00
gr.add_option('--disable-shared',
2010-03-24 04:56:30 +03:00
help=("Disable all use of shared libraries"),
action="store_true", dest='disable_shared', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--disable-rpath',
2010-03-24 04:56:30 +03:00
help=("Disable use of rpath for build binaries"),
action="store_true", dest='disable_rpath_build', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--disable-rpath-install',
2010-11-05 02:03:20 +03:00
help=("Disable use of rpath for library path in installed files"),
2010-03-24 04:56:30 +03:00
action="store_true", dest='disable_rpath_install', default=False)
2010-11-05 02:03:20 +03:00
gr.add_option('--disable-rpath-private-install',
help=("Disable use of rpath for private library path in installed files"),
action="store_true", dest='disable_rpath_private_install', default=False)
2010-04-21 11:13:16 +04:00
gr.add_option('--nonshared-binary',
help=("Disable use of shared libs for the listed binaries"),
action="store", dest='NONSHARED_BINARIES', default='')
2010-04-18 06:43:15 +04:00
opt.add_option('--with-modulesdir',
help=("modules directory [PREFIX/modules]"),
action="store", dest='MODULESDIR', default='${PREFIX}/modules')
2010-11-05 01:23:39 +03:00
opt.add_option('--with-privatelibdir',
help=("private library directory [PREFIX/lib/samba4]"),
2010-11-05 02:03:20 +03:00
action="store", dest='PRIVATELIBDIR', default=None)
2010-11-05 01:23:39 +03:00
2010-04-18 06:43:15 +04:00
gr = opt.option_group('developer options')
gr.add_option('-C',
help='enable configure cacheing',
action='store_true', dest='enable_configure_cache')
2010-04-22 06:03:22 +04:00
gr.add_option('--enable-auto-reconfigure',
help='enable automatic reconfigure on build',
action='store_true', dest='enable_auto_reconfigure')
2010-04-18 06:43:15 +04:00
gr.add_option('--enable-developer',
2010-03-24 04:56:30 +03:00
help=("Turn on developer warnings and debugging"),
action="store_true", dest='developer', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--picky-developer',
2010-04-09 13:54:40 +04:00
help=("Treat all warnings as errors (enable -Werror)"),
action="store_true", dest='picky_developer', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--fatal-errors',
2010-04-09 13:54:40 +04:00
help=("Stop compilation on first error (enable -Wfatal-errors)"),
action="store_true", dest='fatal_errors', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--enable-gccdeps',
help=("Enable use of gcc -MD dependency module"),
2010-08-30 17:02:26 +04:00
action="store_true", dest='enable_gccdeps', default=True)
2010-04-18 06:43:15 +04:00
gr.add_option('--timestamp-dependencies',
2010-03-24 04:56:30 +03:00
help=("use file timestamps instead of content for build dependencies (BROKEN)"),
action="store_true", dest='timestamp_dependencies', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--pedantic',
2010-03-24 04:56:30 +03:00
help=("Enable even more compiler warnings"),
action='store_true', dest='pedantic', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--abi-check',
help=("Check ABI signatures for libraries"),
action='store_true', dest='ABI_CHECK', default=False)
gr.add_option('--abi-check-disable',
help=("Disable ABI checking (used with --enable-developer)"),
action='store_true', dest='ABI_CHECK_DISABLE', default=False)
gr.add_option('--abi-update',
help=("Update ABI signature files for libraries"),
action='store_true', dest='ABI_UPDATE', default=False)
2010-10-20 11:09:45 +04:00
gr.add_option('--show-deps',
help=("Show dependency tree for the given target"),
dest='SHOWDEPS', default='')
2010-10-30 04:17:30 +04:00
gr.add_option('--symbol-check',
help=("check symbols in object files against project rules"),
action='store_true', dest='SYMBOLCHECK', default=False)
2010-10-20 11:09:45 +04:00
gr.add_option('--show-duplicates',
help=("Show objects which are included in multiple binaries or libraries"),
action='store_true', dest='SHOW_DUPLICATES', default=False)
2010-04-18 06:43:15 +04:00
gr = opt.add_option_group('cross compilation options')
gr.add_option('--cross-compile',
2010-04-12 16:06:51 +04:00
help=("configure for cross-compilation"),
action='store_true', dest='CROSS_COMPILE', default=False)
2010-04-18 06:43:15 +04:00
gr.add_option('--cross-execute',
2010-04-12 16:06:51 +04:00
help=("command prefix to use for cross-execution in configure"),
action='store', dest='CROSS_EXECUTE', default='')
2010-04-19 09:58:37 +04:00
gr.add_option('--cross-answers',
help=("answers to cross-compilation configuration (auto modified)"),
action='store', dest='CROSS_ANSWERS', default='')
2010-04-18 06:43:15 +04:00
gr.add_option('--hostcc',
2010-04-12 16:06:51 +04:00
help=("set host compiler when cross compiling"),
action='store', dest='HOSTCC', default=False)
2010-04-13 11:27:52 +04:00
# we use SUPPRESS_HELP for these, as they are ignored, and are there only
# to allow existing RPM spec files to work
opt.add_option('--build',
help=SUPPRESS_HELP,
action='store', dest='AUTOCONF_BUILD', default='')
opt.add_option('--host',
help=SUPPRESS_HELP,
action='store', dest='AUTOCONF_HOST', default='')
opt.add_option('--program-prefix',
help=SUPPRESS_HELP,
action='store', dest='AUTOCONF_PROGRAM_PREFIX', default='')
opt.add_option('--disable-dependency-tracking',
help=SUPPRESS_HELP,
action='store_true', dest='AUTOCONF_DISABLE_DEPENDENCY_TRACKING', default=False)
2010-05-28 14:24:47 +04:00
gr = opt.option_group('dist options')
gr.add_option('--sign-release',
help='sign the release tarball created by waf dist',
action='store_true', dest='SIGN_RELEASE')
gr.add_option('--tag',
help='tag release in git at the same time',
type='string', action='store', dest='TAG_RELEASE')
2010-04-12 16:06:51 +04:00
2010-03-24 04:56:30 +03:00
@wafsamba.runonce
def configure(conf):
conf.env.hlist = []
conf.env.srcdir = conf.srcdir
if Options.options.timestamp_dependencies:
conf.ENABLE_TIMESTAMP_DEPENDENCIES()
conf.SETUP_CONFIGURE_CACHE(Options.options.enable_configure_cache)
# load our local waf extensions
2010-03-27 13:28:59 +03:00
conf.check_tool('gnu_dirs')
2010-03-24 04:56:30 +03:00
conf.check_tool('wafsamba')
conf.CHECK_CC_ENV()
conf.check_tool('compiler_cc')
2010-04-04 03:57:33 +04:00
# we need git for 'waf dist'
conf.find_program('git', var='GIT')
2010-08-30 17:02:26 +04:00
# older gcc versions (< 4.4) does not work with gccdeps, so we have to see if the .d file is generated
2010-08-17 19:13:15 +04:00
if Options.options.enable_gccdeps:
2010-08-30 17:02:26 +04:00
from TaskGen import feature, after
@feature('testd')
@after('apply_core')
def check_d(self):
tsk = self.compiled_tasks[0]
tsk.outputs.append(tsk.outputs[0].change_ext('.d'))
import Task
cc = Task.TaskBase.classes['cc']
oldmeth = cc.run
cc.run = Task.compile_fun_noshell('cc', '${CC} ${CCFLAGS} ${CPPFLAGS} ${_CCINCFLAGS} ${_CCDEFFLAGS} ${CC_SRC_F}${SRC} ${CC_TGT_F}${TGT[0].abspath(env)}')[0]
try:
try:
conf.check(features='cc testd', fragment='int main() {return 0;}\n', ccflags=['-MD'], mandatory=True, msg='Check for -MD')
except:
pass
else:
conf.check_tool('gccdeps', tooldir=conf.srcdir + "/buildtools/wafsamba")
finally:
cc.run = oldmeth
2010-03-24 04:56:30 +03:00
# make the install paths available in environment
2010-03-28 12:30:13 +04:00
conf.env.LIBDIR = Options.options.LIBDIR or '${PREFIX}/lib'
conf.env.BINDIR = Options.options.BINDIR or '${PREFIX}/bin'
conf.env.SBINDIR = Options.options.SBINDIR or '${PREFIX}/sbin'
2010-03-24 04:56:30 +03:00
conf.env.MODULESDIR = Options.options.MODULESDIR
2010-11-05 01:23:39 +03:00
conf.env.PRIVATELIBDIR = Options.options.PRIVATELIBDIR
2010-03-28 07:09:36 +04:00
conf.env.BUNDLED_LIBS = Options.options.BUNDLED_LIBS.split(',')
conf.env.BUILTIN_LIBRARIES = Options.options.BUILTIN_LIBRARIES.split(',')
2010-03-24 04:56:30 +03:00
conf.env.DISABLE_SHARED = Options.options.disable_shared
2010-04-21 11:13:16 +04:00
conf.env.NONSHARED_BINARIES = Options.options.NONSHARED_BINARIES.split(',')
2010-03-24 04:56:30 +03:00
2010-10-24 01:26:43 +04:00
conf.env.PRIVATE_EXTENSION = Options.options.PRIVATE_EXTENSION
conf.env.PRIVATE_EXTENSION_EXCEPTION = Options.options.PRIVATE_EXTENSION_EXCEPTION.split(',')
2010-03-28 07:09:36 +04:00
2010-04-12 16:06:51 +04:00
conf.env.CROSS_COMPILE = Options.options.CROSS_COMPILE
conf.env.CROSS_EXECUTE = Options.options.CROSS_EXECUTE
2010-04-19 09:58:37 +04:00
conf.env.CROSS_ANSWERS = Options.options.CROSS_ANSWERS
2010-04-12 16:06:51 +04:00
conf.env.HOSTCC = Options.options.HOSTCC
2010-04-13 11:27:52 +04:00
conf.env.AUTOCONF_BUILD = Options.options.AUTOCONF_BUILD
conf.env.AUTOCONF_HOST = Options.options.AUTOCONF_HOST
conf.env.AUTOCONF_PROGRAM_PREFIX = Options.options.AUTOCONF_PROGRAM_PREFIX
2010-05-07 11:00:53 +04:00
if (conf.env.AUTOCONF_HOST and
conf.env.AUTOCONF_BUILD and
conf.env.AUTOCONF_BUILD != conf.env.AUTOCONF_HOST):
2010-04-13 11:27:52 +04:00
Logs.error('ERROR: Mismatch between --build and --host. Please use --cross-compile instead')
sys.exit(1)
if conf.env.AUTOCONF_PROGRAM_PREFIX:
Logs.error('ERROR: --program-prefix not supported')
sys.exit(1)
2010-04-18 06:43:15 +04:00
# enable ABI checking for developers
conf.env.ABI_CHECK = Options.options.ABI_CHECK or Options.options.developer
if Options.options.ABI_CHECK_DISABLE:
conf.env.ABI_CHECK = False
2010-05-21 14:48:11 +04:00
try:
conf.find_program('gdb', mandatory=True)
except:
conf.env.ABI_CHECK = False
2010-04-18 06:43:15 +04:00
2010-04-21 09:15:55 +04:00
conf.CHECK_COMMAND(['uname', '-a'],
msg='Checking build system',
define='BUILD_SYSTEM',
on_target=False)
conf.CHECK_UNAME()
2010-03-24 04:56:30 +03:00
# see if we can compile and run a simple C program
2010-04-21 09:15:55 +04:00
conf.CHECK_CODE('printf("hello world")',
2010-03-24 04:56:30 +03:00
define='HAVE_SIMPLE_C_PROG',
mandatory=True,
execute=True,
headers='stdio.h',
msg='Checking simple C program')
2010-03-28 10:24:05 +04:00
# see if we can build shared libs
if not conf.CHECK_LIBRARY_SUPPORT():
conf.env.DISABLE_SHARED = True
2010-03-24 04:56:30 +03:00
# check for rpath
2010-03-28 10:24:05 +04:00
if not conf.env.DISABLE_SHARED and conf.CHECK_LIBRARY_SUPPORT(rpath=True):
2010-03-24 04:56:30 +03:00
conf.env.RPATH_ON_BUILD = not Options.options.disable_rpath_build
conf.env.RPATH_ON_INSTALL = (conf.env.RPATH_ON_BUILD and
not Options.options.disable_rpath_install)
2010-11-05 02:03:20 +03:00
if not conf.env.PRIVATELIBDIR:
conf.env.PRIVATELIBDIR = '${PREFIX}/lib/samba4'
conf.env.RPATH_ON_INSTALL_PRIVATE = (
not Options.options.disable_rpath_private_install)
2010-03-24 04:56:30 +03:00
else:
conf.env.RPATH_ON_INSTALL = False
conf.env.RPATH_ON_BUILD = False
2010-11-05 02:03:20 +03:00
conf.env.RPATH_ON_INSTALL_PRIVATE = False
if not conf.env.PRIVATELIBDIR:
# rpath is not possible so there is no sense in having a
# private library directory by default.
# the user can of course always override it.
conf.env.PRIVATELIBDIR = conf.env.LIBDIR
2010-03-24 04:56:30 +03:00
# we should use the PIC options in waf instead
2010-10-28 02:12:53 +04:00
# Some compilo didn't support -fPIC but just print a warning
if conf.env['COMPILER_CC'] == "suncc":
conf.ADD_CFLAGS('-KPIC', testflags=True)
# we really want define here as we need to have this
# define even during the tests otherwise detection of
# boolean is broken
conf.DEFINE('_STDC_C99', 1, add_to_cflags=True)
2010-10-28 12:09:29 +04:00
conf.DEFINE('_XPG6', 1, add_to_cflags=True)
2010-10-28 02:12:53 +04:00
else:
conf.ADD_CFLAGS('-fPIC', testflags=True)
2010-03-24 04:56:30 +03:00
2010-10-31 18:50:15 +03:00
# On Solaris 8 with suncc (at least) the flags for the linker to define the name of the
# library are not always working (if the command line is very very long and with a lot
# files)
if conf.env['COMPILER_CC'] == "suncc":
save = conf.env['SONAME_ST']
conf.env['SONAME_ST'] = '-Wl,-h,%s'
if not conf.CHECK_SHLIB_INTRASINC_NAME_FLAGS("Checking if flags %s are ok" % conf.env['SONAME_ST']):
conf.env['SONAME_ST'] = save
2010-05-05 17:16:26 +04:00
conf.CHECK_INLINE()
2010-03-24 04:56:30 +03:00
# check for pkgconfig
conf.check_cfg(atleast_pkgconfig_version='0.0.0')
conf.DEFINE('_GNU_SOURCE', 1, add_to_cflags=True)
conf.DEFINE('_XOPEN_SOURCE_EXTENDED', 1, add_to_cflags=True)
# get the base headers we'll use for the rest of the tests
conf.CHECK_HEADERS('stdio.h sys/types.h sys/stat.h stdlib.h stddef.h memory.h string.h',
add_headers=True)
conf.CHECK_HEADERS('strings.h inttypes.h stdint.h unistd.h minix/config.h', add_headers=True)
conf.CHECK_HEADERS('ctype.h standards.h stdbool.h stdint.h stdarg.h vararg.h', add_headers=True)
2010-03-30 07:41:08 +04:00
conf.CHECK_HEADERS('limits.h assert.h')
2010-03-24 04:56:30 +03:00
# see if we need special largefile flags
conf.CHECK_LARGEFILE()
if 'HAVE_STDDEF_H' in conf.env and 'HAVE_STDLIB_H' in conf.env:
conf.DEFINE('STDC_HEADERS', 1)
conf.CHECK_HEADERS('sys/time.h time.h', together=True)
if 'HAVE_SYS_TIME_H' in conf.env and 'HAVE_TIME_H' in conf.env:
conf.DEFINE('TIME_WITH_SYS_TIME', 1)
2010-10-17 14:58:22 +04:00
# cope with different extensions for libraries
(root, ext) = os.path.splitext(conf.env.shlib_PATTERN)
if ext[0] == '.':
conf.define('SHLIBEXT', ext[1:], quote=True)
else:
conf.define('SHLIBEXT', "so", quote=True)
2010-03-24 04:56:30 +03:00
conf.CHECK_CODE('long one = 1; return ((char *)(&one))[0]',
execute=True,
define='WORDS_BIGENDIAN')
# check if signal() takes a void function
if conf.CHECK_CODE('return *(signal (0, 0)) (0) == 1',
define='RETSIGTYPE_INT',
execute=False,
headers='signal.h',
msg='Checking if signal handlers return int'):
conf.DEFINE('RETSIGTYPE', 'int')
else:
conf.DEFINE('RETSIGTYPE', 'void')
conf.CHECK_VARIABLE('__FUNCTION__', define='HAVE_FUNCTION_MACRO')
conf.CHECK_CODE('va_list ap1,ap2; va_copy(ap1,ap2)',
define="HAVE_VA_COPY",
msg="Checking for va_copy")
conf.CHECK_CODE('''
#define eprintf(...) fprintf(stderr, __VA_ARGS__)
eprintf("bla", "bar")
''', define='HAVE__VA_ARGS__MACRO')
conf.SAMBA_BUILD_ENV()
def build(bld):
2010-04-23 02:24:34 +04:00
# give a more useful message if the source directory has moved
relpath = os_path_relpath(bld.curdir, bld.srcnode.abspath())
if relpath.find('../') != -1:
Logs.error('bld.curdir %s is not a child of %s' % (bld.curdir, bld.srcnode.abspath()))
raise Utils.WafError('''The top source directory has moved. Please run distclean and reconfigure''')
2010-04-14 17:37:47 +04:00
bld.CHECK_MAKEFLAGS()
2010-03-24 04:56:30 +03:00
bld.SETUP_BUILD_GROUPS()
bld.ENFORCE_GROUP_ORDERING()
bld.CHECK_PROJECT_RULES()