2010-03-28 09:48:49 +11:00
#!/usr/bin/env python
2010-03-24 12:56:30 +11:00
# this is a base set of waf rules that everything else pulls in first
2015-10-27 20:46:46 +01:00
import os, sys
2018-01-31 11:48:43 +02:00
from waflib import Configure, Logs, Options, Utils, Context, Errors
import wafsamba
2019-10-22 09:32:58 +02:00
from samba_utils import symlink
2010-04-13 17:27:52 +10:00
from optparse import SUPPRESS_HELP
2010-03-24 12:56:30 +11:00
2022-03-28 13:00:03 +02:00
phs = os.environ.get("PYTHONHASHSEED", None)
if phs != "1":
raise Errors.WafError('''PYTHONHASHSEED=1 missing! Don't use waf directly, use ./configure and make!''')
2010-04-22 12:03:22 +10: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:
2016-03-26 13:18:07 +01:00
Configure.autoconfig = 'clobber'
2010-04-22 12:03:22 +10:00
2018-01-31 11:48:43 +02:00
def default_value(option, default=''):
if option in Options.options.__dict__:
return Options.options.__dict__[option]
return default
2010-03-24 12:56:30 +11:00
2018-01-31 11:48:43 +02:00
def options(opt):
opt.load('compiler_cc')
opt.load('gnu_dirs')
2010-03-28 14:09:36 +11:00
2010-04-25 12:58:52 +10:00
gr = opt.option_group('library handling options')
2010-04-18 12:43:15 +10:00
gr.add_option('--bundled-libraries',
2022-03-28 11:16:51 +13:00
help=(f'''comma separated list of bundled libraries.
{Context.g_module.APPNAME} includes copies of externally maintained
2023-08-29 14:22:58 +12:00
system libraries (such as popt, cmocka) as well as Samba-maintained
2022-03-28 11:16:51 +13:00
libraries that can be found on the system already (such as talloc,
tdb).
This option, most useful for packagers, controls if each library
should be forced to be obtained from inside Samba (bundled), forced to
be obtained from the system (bundling disabled, ensuing that
dependency errors are not silently missed) or if that choice should be
automatic (best for end users).
May include !LIBNAME to disable bundling a library.
Can be 'NONE' or 'ALL' [auto]'''),
2010-03-28 14:09:36 +11:00
action="store", dest='BUNDLED_LIBS', default='')
2010-03-28 15:41:49 +11:00
2012-04-19 15:34:48 +10:00
gr.add_option('--private-libraries',
2022-03-28 11:16:51 +13:00
help=(f'''comma separated list of normally public libraries to build instead as private libraries.
By default {Context.g_module.APPNAME} will publish a number of public
libraries for use by other software. For Samba this would include
libwbclient, libsmbclient and others.
This allows that to be disabled, to ensure that other software does
not use these libraries and they are placed in a private filesystem
prefix.
May include !LIBNAME to disable making a library private in order to
limit the effect of 'ALL' '''),
2012-04-19 15:34:48 +10:00
action="store", dest='PRIVATE_LIBS', default='')
2018-01-31 11:48:43 +02:00
extension_default = default_value('PRIVATE_EXTENSION_DEFAULT')
2010-10-23 23:26:43 +02:00
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 15:41:49 +11:00
2018-01-31 11:48:43 +02:00
extension_exception = default_value('PRIVATE_EXTENSION_EXCEPTION')
2010-10-23 23:26:43 +02:00
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 15:41:49 +11:00
2018-01-31 11:48:43 +02:00
builtin_default = default_value('BUILTIN_LIBRARIES_DEFAULT')
2022-03-28 11:16:51 +13:00
gr.add_option('--builtin-libraries', help=(
f'''comma separated list of libraries to build directly into binaries.
By default {Context.g_module.APPNAME} will build a large number of
shared libraries, to reduce binary size. This overrides this
behaviour and essentially statically links the specified libraries into
each binary [{builtin_default}]'''),
action="store",
dest='BUILTIN_LIBRARIES', default=builtin_default)
2010-03-28 14:09:36 +11:00
2010-04-18 12:43:15 +10:00
gr.add_option('--minimum-library-version',
2022-03-28 11:16:51 +13:00
help=(
f'''list of minimum system library versions for otherwise bundled
libraries.
{Context.g_module.APPNAME} by default requires that, in order to match
what is tested in our continuous integration (CI) test-suite, that the
versions of libraries that we include match that found on the system,
before we will select not to 'bundle'.
This option, possibly useful for packagers, allows that specified
2023-08-29 14:22:58 +12:00
version to be overridden (say, if it is absolutely known that the
2022-03-28 11:16:51 +13:00
newer version included in this tarball has no relevant changes).
Use this with extreme care
(LIBNAME1:version,LIBNAME2:version)'''),
2010-04-12 09:49:56 +10:00
action="store", dest='MINIMUM_LIBRARY_VERSION', default='')
2010-04-18 12:43:15 +10:00
gr.add_option('--disable-rpath',
2010-03-24 12:56:30 +11:00
help=("Disable use of rpath for build binaries"),
action="store_true", dest='disable_rpath_build', default=False)
2010-04-18 12:43:15 +10:00
gr.add_option('--disable-rpath-install',
2010-11-05 00:03:20 +01:00
help=("Disable use of rpath for library path in installed files"),
2010-03-24 12:56:30 +11:00
action="store_true", dest='disable_rpath_install', default=False)
2010-11-05 00:03:20 +01: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 17:13:16 +10:00
gr.add_option('--nonshared-binary',
2022-03-28 11:16:51 +13:00
help=(
2023-03-14 08:53:49 +01:00
f'''Disable use of shared libraries internal to {Context.g_module.APPNAME} for the listed binaries.
2022-03-28 11:16:51 +13:00
The resulting binaries are 'statically linked' with regard to components provided by
{Context.g_module.APPNAME}, but remain dynamically linked to (eg) libc.so and libgnutls.so
Currently the only tested value is 'smbtorture,smbd/smbd' for Samba'''),
2010-04-21 17:13:16 +10:00
action="store", dest='NONSHARED_BINARIES', default='')
2010-12-08 19:00:00 +11:00
gr.add_option('--disable-symbol-versions',
help=("Disable use of the --version-script linker option"),
action="store_true", dest='disable_symbol_versions', default=False)
2010-04-18 12:43:15 +10:00
opt.add_option('--with-modulesdir',
help=("modules directory [PREFIX/modules]"),
action="store", dest='MODULESDIR', default='${PREFIX}/modules')
2010-11-04 23:23:39 +01:00
opt.add_option('--with-privatelibdir',
2018-01-31 11:48:43 +02:00
help=("private library directory [PREFIX/lib/%s]" % Context.g_module.APPNAME),
2010-11-05 00:03:20 +01:00
action="store", dest='PRIVATELIBDIR', default=None)
2010-11-04 23:23:39 +01:00
2012-05-17 14:49:08 +02:00
opt.add_option('--with-libiconv',
2012-05-26 23:29:44 +03:00
help='additional directory to search for libiconv',
2012-05-18 08:28:18 +10:00
action='store', dest='iconv_open', default='/usr/local',
2012-05-17 14:49:08 +02:00
match = ['Checking for library iconv', 'Checking for iconv_open', 'Checking for header iconv.h'])
2013-06-25 18:37:35 +02:00
opt.add_option('--without-gettext',
help=("Disable use of gettext"),
action="store_true", dest='disable_gettext', default=False)
2012-05-17 14:49:08 +02:00
2010-04-18 12:43:15 +10:00
gr = opt.option_group('developer options')
gr.add_option('-C',
2019-10-26 02:41:08 +02:00
help='enable configure caching',
2010-04-18 12:43:15 +10:00
action='store_true', dest='enable_configure_cache')
2010-04-22 12:03:22 +10:00
gr.add_option('--enable-auto-reconfigure',
help='enable automatic reconfigure on build',
action='store_true', dest='enable_auto_reconfigure')
2012-04-11 08:08:44 +10:00
gr.add_option('--enable-debug',
help=("Turn on debugging symbols"),
action="store_true", dest='debug', default=False)
2010-04-18 12:43:15 +10:00
gr.add_option('--enable-developer',
2010-03-24 12:56:30 +11:00
help=("Turn on developer warnings and debugging"),
action="store_true", dest='developer', default=False)
pidl: optionally annotate output for debug purposes
It can sometimes be hard to tell which bit of pidl generated which bit
of C. This commit wants to help.
If the PIDL_DEVELOPER environment variable is set (via waf
--pidl-developer or some other means), pidl will annotate *most* C
indicating which lines were generated by which bits of pidl. It looks
something like this:
_PUBLIC_ enum ndr_err_code ndr_push_auth_session_info(struct ndr_push *ndr, int ndr_flags, const struct auth_session_info *r)
{ //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParseTypePushFunction lib/Parse/Pidl/Samba4/NDR/Parser.pm:3079
NDR_PUSH_CHECK_FLAGS(ndr, ndr_flags); //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParseStructPush lib/Parse/Pidl/Samba4/NDR/Parser.pm:604
if (ndr_flags & NDR_SCALARS) {
NDR_CHECK(ndr_push_align(ndr, 5)); //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParseStructPushPrimitives lib/Parse/Pidl/Samba4/NDR/Parser.pm:1448
NDR_CHECK(ndr_push_unique_ptr(ndr, r->security_token)); //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParsePtrPush lib/Parse/Pidl/Samba4/NDR/Parser.pm:604
NDR_CHECK(ndr_push_unique_ptr(ndr, r->unix_token));
NDR_CHECK(ndr_push_unique_ptr(ndr, r->info));
NDR_CHECK(ndr_push_unique_ptr(ndr, r->unix_info));
NDR_CHECK(ndr_push_uint3264(ndr, NDR_SCALARS, 0));
/* [ignore] 'torture' */ //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParseElementPushLevel lib/Parse/Pidl/Samba4/NDR/Parser.pm:729
NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, r->session_key)); //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParseDataPush lib/Parse/Pidl/Samba4/NDR/Parser.pm:604
NDR_CHECK(ndr_push_uint3264(ndr, NDR_SCALARS, 0)); //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParsePtrPush lib/Parse/Pidl/Samba4/NDR/Parser.pm:604
/* [ignore] 'credentials' */ //:PIDL: Parse::Pidl::Samba4::NDR::Parser::ParseElementPushLevel lib/Parse/Pidl/Samba4/NDR/Parser.pm:729
The comments starting with '//:PIDL:' have the function name, the filename,
and line number. The comment follows the ordinary output, and uses the '//'
style so as not to interfere with multiline /* */ comments if they happen
to exist.
A '//:PIDL:' comment is added whenever the pidl function or indentation
level changes, and very occasionally at other places if pidl runs for a
while without either of these things happening.
This does not affect pidl parsers that do not inherit from Parse::Pidl::Base,
and is careful to have no performance impact on non-debug generation.
This may help with semi-automated flow analysis.
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2019-11-30 16:22:22 +13:00
gr.add_option('--pidl-developer',
help=("annotate PIDL-generated code for developers"),
action="store_true", dest='pidl_developer', default=False)
2014-03-12 11:48:06 +01:00
gr.add_option('--disable-warnings-as-errors',
help=("Do not treat all warnings as errors (disable -Werror)"),
action="store_true", dest='disable_warnings_as_errors', default=False)
2019-04-30 17:21:15 +12:00
opt.add_option('--enable-coverage',
help=("enable options necessary for code coverage "
"reporting on selftest (default=no)"),
action="store_true", dest='enable_coverage', default=False)
2010-04-18 12:43:15 +10:00
gr.add_option('--fatal-errors',
2010-04-09 19:54:40 +10:00
help=("Stop compilation on first error (enable -Wfatal-errors)"),
action="store_true", dest='fatal_errors', default=False)
2010-04-18 12:43:15 +10:00
gr.add_option('--enable-gccdeps',
help=("Enable use of gcc -MD dependency module"),
2010-08-30 15:02:26 +02:00
action="store_true", dest='enable_gccdeps', default=True)
2010-04-18 12:43:15 +10:00
gr.add_option('--pedantic',
2010-03-24 12:56:30 +11:00
help=("Enable even more compiler warnings"),
action='store_true', dest='pedantic', default=False)
2010-11-16 12:05:14 +11:00
gr.add_option('--git-local-changes',
help=("mark version with + if local git changes"),
action='store_true', dest='GIT_LOCAL_CHANGES', default=False)
2015-01-26 16:16:15 +01:00
gr.add_option('--address-sanitizer',
2015-02-12 12:13:39 +13:00
help=("Enable address sanitizer compile and linker flags"),
2015-01-26 16:16:15 +01:00
action="store_true", dest='address_sanitizer', default=False)
2019-05-14 11:25:07 +12:00
gr.add_option('--undefined-sanitizer',
help=("Enable undefined behaviour sanitizer compile and linker flags"),
action="store_true",
dest='undefined_sanitizer',
default=False)
2023-02-03 13:43:16 +01:00
gr.add_option('--memory-sanitizer',
help=("Enable memory behaviour sanitizer compile and linker flags"),
action="store_true",
dest='memory_sanitizer',
default=False)
2019-04-04 00:23:07 +02:00
gr.add_option('--enable-libfuzzer',
2019-12-04 21:23:06 +13:00
help=("Build fuzzing binaries (use ADDITIONAL_CFLAGS to specify compiler options for libFuzzer or use CC=honggfuzz/hfuzz-cc)"),
2019-04-04 00:23:07 +02:00
action="store_true", dest='enable_libfuzzer', default=False)
2019-12-04 21:23:06 +13:00
gr.add_option('--enable-afl-fuzzer',
help=("Build fuzzing binaries AFL-style (typically use with CC=afl-gcc)"),
action="store_true", dest='enable_afl_fuzzer', default=False)
2010-03-24 12:56:30 +11:00
2019-11-06 12:24:18 +13:00
# Fuzz targets may need additional LDFLAGS that we can't use on
# internal binaries like asn1_compile
gr.add_option('--fuzz-target-ldflags',
help=("Linker flags to be used when building fuzz targets"),
action="store", dest='FUZZ_TARGET_LDFLAGS', default='')
2010-04-18 12:43:15 +10: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 18:09:45 +11:00
gr.add_option('--show-deps',
help=("Show dependency tree for the given target"),
dest='SHOWDEPS', default='')
2010-10-30 11:17:30 +11:00
gr.add_option('--symbol-check',
help=("check symbols in object files against project rules"),
action='store_true', dest='SYMBOLCHECK', default=False)
2011-09-08 19:07:47 +10:00
gr.add_option('--dup-symbol-check',
help=("check for duplicate symbols in object files and system libs (must be configured with --enable-developer)"),
action='store_true', dest='DUP_SYMBOLCHECK', default=False)
2011-02-22 10:59:44 +11:00
gr.add_option('--why-needed',
help=("TARGET:DEPENDENCY check why TARGET needs DEPENDENCY"),
action='store', type='str', dest='WHYNEEDED', default=None)
2010-10-20 18:09:45 +11: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 12:43:15 +10:00
gr = opt.add_option_group('cross compilation options')
gr.add_option('--cross-compile',
2010-04-12 22:06:51 +10:00
help=("configure for cross-compilation"),
action='store_true', dest='CROSS_COMPILE', default=False)
2010-04-18 12:43:15 +10:00
gr.add_option('--cross-execute',
2010-04-12 22:06:51 +10:00
help=("command prefix to use for cross-execution in configure"),
action='store', dest='CROSS_EXECUTE', default='')
2010-04-19 15:58:37 +10:00
gr.add_option('--cross-answers',
help=("answers to cross-compilation configuration (auto modified)"),
action='store', dest='CROSS_ANSWERS', default='')
2010-04-18 12:43:15 +10:00
gr.add_option('--hostcc',
2010-04-12 22:06:51 +10:00
help=("set host compiler when cross compiling"),
action='store', dest='HOSTCC', default=False)
2010-04-13 17:27:52 +10: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='')
2012-03-15 17:04:00 +01:00
opt.add_option('--target',
help=SUPPRESS_HELP,
action='store', dest='AUTOCONF_TARGET', default='')
2010-04-13 17:27:52 +10:00
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)
2011-10-06 10:32:58 +02:00
opt.add_option('--disable-silent-rules',
help=SUPPRESS_HELP,
action='store_true', dest='AUTOCONF_DISABLE_SILENT_RULES', default=False)
2010-04-13 17:27:52 +10:00
2010-05-28 20:24:47 +10: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')
2017-01-27 13:28:01 -05:00
opt.add_option('--disable-python',
help='do not generate python modules',
action='store_true', dest='disable_python', default=False)
2010-04-12 22:06:51 +10:00
2015-11-05 02:06:42 +01:00
@Utils.run_once
2010-03-24 12:56:30 +11:00
def configure(conf):
conf.env.hlist = []
2018-01-31 11:48:43 +02:00
conf.env.srcdir = conf.srcnode.abspath()
2010-03-24 12:56:30 +11:00
2017-04-15 09:09:21 +02:00
conf.define('SRCDIR', conf.env['srcdir'])
2010-03-24 12:56:30 +11:00
conf.SETUP_CONFIGURE_CACHE(Options.options.enable_configure_cache)
# load our local waf extensions
2018-01-31 11:48:43 +02:00
conf.load('gnu_dirs')
conf.load('wafsamba')
2010-03-24 12:56:30 +11:00
conf.CHECK_CC_ENV()
2018-09-25 18:13:09 +02:00
conf.load('compiler_c')
2010-03-24 12:56:30 +11:00
2014-12-18 21:36:07 +01:00
conf.CHECK_STANDARD_LIBPATH()
2010-04-04 09:57:33 +10:00
# we need git for 'waf dist'
conf.find_program('git', var='GIT')
2010-08-30 15:02:26 +02: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 17:13:15 +02:00
if Options.options.enable_gccdeps:
2015-12-05 12:09:33 +01:00
# stale file removal - the configuration may pick up the old .pyc file
2018-01-31 11:48:43 +02:00
p = os.path.join(conf.env.srcdir, 'buildtools/wafsamba/gccdeps.pyc')
2015-12-05 12:09:33 +01:00
if os.path.exists(p):
os.remove(p)
2016-03-26 13:18:07 +01:00
conf.load('gccdeps')
2010-03-24 12:56:30 +11:00
# make the install paths available in environment
2010-03-28 19:30:13 +11: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 12:56:30 +11:00
conf.env.MODULESDIR = Options.options.MODULESDIR
2010-11-04 23:23:39 +01:00
conf.env.PRIVATELIBDIR = Options.options.PRIVATELIBDIR
2010-03-28 14:09:36 +11:00
conf.env.BUNDLED_LIBS = Options.options.BUNDLED_LIBS.split(',')
wscript: Add --with-system-heimdalkrb5
Add the configure option --with-system-heimdalkrb5 to build Samba
explicitly with a system Heimdal kerberos library. This does the same as
the more complicated syntax
--bundled-libraries='!heimdal,!asn1,!com_err,!roken,!hx509,!wind,!gssapi,!hcrypto,!krb5,!heimbase,!asn1_compile,!compile_et,!kdc,!hdb,!heimntlm'
and it also enforces the conflicts with MIT Kerbros and the AD DC
build.
Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Wed Jul 11 05:18:59 CEST 2018 on sn-devel-144
2018-07-10 14:51:02 -07:00
conf.env.SYSTEM_LIBS = ()
2012-04-19 15:34:48 +10:00
conf.env.PRIVATE_LIBS = Options.options.PRIVATE_LIBS.split(',')
2010-03-28 14:09:36 +11:00
conf.env.BUILTIN_LIBRARIES = Options.options.BUILTIN_LIBRARIES.split(',')
2010-04-21 17:13:16 +10:00
conf.env.NONSHARED_BINARIES = Options.options.NONSHARED_BINARIES.split(',')
2010-03-24 12:56:30 +11:00
2010-10-23 23:26:43 +02:00
conf.env.PRIVATE_EXTENSION = Options.options.PRIVATE_EXTENSION
conf.env.PRIVATE_EXTENSION_EXCEPTION = Options.options.PRIVATE_EXTENSION_EXCEPTION.split(',')
2021-07-01 15:29:46 +02:00
conf.env.PRIVATE_VERSION = "%s_%s_%s" % (Context.g_module.APPNAME,
Context.g_module.VERSION, conf.env.PRIVATE_EXTENSION)
2010-03-28 14:09:36 +11:00
2010-04-12 22:06:51 +10:00
conf.env.CROSS_COMPILE = Options.options.CROSS_COMPILE
conf.env.CROSS_EXECUTE = Options.options.CROSS_EXECUTE
2010-04-19 15:58:37 +10:00
conf.env.CROSS_ANSWERS = Options.options.CROSS_ANSWERS
2010-04-12 22:06:51 +10:00
conf.env.HOSTCC = Options.options.HOSTCC
2010-04-13 17:27:52 +10: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
2017-01-27 13:28:01 -05:00
conf.env.disable_python = Options.options.disable_python
2010-05-07 09:00:53 +02:00
if (conf.env.AUTOCONF_HOST and
conf.env.AUTOCONF_BUILD and
conf.env.AUTOCONF_BUILD != conf.env.AUTOCONF_HOST):
2010-04-13 17:27:52 +10: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 12:43:15 +10: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 12:48:11 +02:00
try:
conf.find_program('gdb', mandatory=True)
except:
conf.env.ABI_CHECK = False
2010-04-18 12:43:15 +10:00
2019-04-30 17:21:15 +12:00
conf.env.enable_coverage = Options.options.enable_coverage
if conf.env.enable_coverage:
conf.ADD_LDFLAGS('-lgcov', testflags=True)
conf.ADD_CFLAGS('--coverage', testflags=True)
# disable abi check for coverage, otherwise ld will fail
conf.env.ABI_CHECK = False
2010-11-16 12:05:14 +11:00
conf.env.GIT_LOCAL_CHANGES = Options.options.GIT_LOCAL_CHANGES
2010-04-21 15:15:55 +10:00
conf.CHECK_UNAME()
2010-03-24 12:56:30 +11:00
# see if we can compile and run a simple C program
2010-04-21 15:15:55 +10:00
conf.CHECK_CODE('printf("hello world")',
2010-03-24 12:56:30 +11:00
define='HAVE_SIMPLE_C_PROG',
mandatory=True,
2023-02-05 21:18:13 +00:00
execute=not conf.env.CROSS_COMPILE,
2010-03-24 12:56:30 +11:00
headers='stdio.h',
msg='Checking simple C program')
2015-01-07 09:52:53 +01:00
# Try to find the right extra flags for -Werror behaviour
for f in ["-Werror", # GCC
"-errwarn=%all", # Sun Studio
"-qhalt=w", # IBM xlc
"-w2", # Tru64
]:
2019-02-09 01:33:13 +01:00
if conf.CHECK_CFLAGS([f]):
2015-01-07 09:52:53 +01:00
if not 'WERROR_CFLAGS' in conf.env:
conf.env['WERROR_CFLAGS'] = []
conf.env['WERROR_CFLAGS'].extend([f])
break
2014-12-18 06:37:28 +01:00
# check which compiler/linker flags are needed for rpath support
2019-02-10 03:41:50 +01:00
if conf.CHECK_LDFLAGS(['-Wl,-rpath,.']):
conf.env['RPATH_ST'] = '-Wl,-rpath,%s'
elif conf.CHECK_LDFLAGS(['-Wl,-R,.']):
2014-12-18 06:37:28 +01:00
conf.env['RPATH_ST'] = '-Wl,-R,%s'
2010-03-24 12:56:30 +11:00
# check for rpath
2012-10-10 21:20:24 +11:00
if conf.CHECK_LIBRARY_SUPPORT(rpath=True):
2010-12-08 11:26:32 +11:00
support_rpath = True
2010-03-24 12:56:30 +11: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 00:03:20 +01:00
if not conf.env.PRIVATELIBDIR:
2018-06-27 00:24:31 +03:00
conf.env.PRIVATELIBDIR = '%s/%s' % (conf.env.LIBDIR, Context.g_module.APPNAME)
2010-11-05 00:03:20 +01:00
conf.env.RPATH_ON_INSTALL_PRIVATE = (
not Options.options.disable_rpath_private_install)
2010-03-24 12:56:30 +11:00
else:
2010-12-08 11:26:32 +11:00
support_rpath = False
2010-03-24 12:56:30 +11:00
conf.env.RPATH_ON_INSTALL = False
conf.env.RPATH_ON_BUILD = False
2010-11-05 00:03:20 +01: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 12:56:30 +11:00
2012-10-10 21:20:24 +11:00
if (not Options.options.disable_symbol_versions and
2010-12-08 19:00:00 +11:00
conf.CHECK_LIBRARY_SUPPORT(rpath=support_rpath,
version_script=True,
msg='-Wl,--version-script support')):
2010-12-08 11:26:32 +11:00
conf.env.HAVE_LD_VERSION_SCRIPT = True
else:
conf.env.HAVE_LD_VERSION_SCRIPT = False
2019-02-10 00:44:14 +01:00
if conf.CHECK_CFLAGS(['-fvisibility=hidden']):
2015-01-07 09:56:56 +01:00
conf.env.VISIBILITY_CFLAGS = '-fvisibility=hidden'
conf.CHECK_CODE('''int main(void) { return 0; }
2019-02-09 01:30:50 +01:00
__attribute__((visibility("default"))) void vis_foo2(void) {}\n''',
2015-01-07 09:56:56 +01:00
cflags=conf.env.VISIBILITY_CFLAGS,
2018-07-03 14:34:29 +10:00
strict=True,
2015-01-07 09:56:56 +01:00
define='HAVE_VISIBILITY_ATTR', addmain=False)
2015-02-24 13:26:29 +13:00
# check HAVE_CONSTRUCTOR_ATTRIBUTE
conf.CHECK_CODE('''
void test_constructor_attribute(void) __attribute__ ((constructor));
void test_constructor_attribute(void)
{
return;
}
int main(void) {
return 0;
}
''',
'HAVE_CONSTRUCTOR_ATTRIBUTE',
addmain=False,
2018-07-03 14:34:29 +10:00
strict=True,
2015-02-24 13:26:29 +13:00
msg='Checking for library constructor support')
2020-10-30 12:55:54 +01:00
# check HAVE_PRAGMA_INIT alternatively
if not conf.env.HAVE_CONSTRUCTOR_ATTRIBUTE:
conf.CHECK_CODE('''
#pragma init (test_init)
void test_init(void)
{
return;
}
int main(void) {
return 0;
}
''',
'HAVE_PRAGMA_INIT',
addmain=False,
strict=True,
msg='Checking for pragma init support')
# check HAVE_DESTRUCTOR_ATTRIBUTE
2015-02-24 13:26:29 +13:00
conf.CHECK_CODE('''
void test_destructor_attribute(void) __attribute__ ((destructor));
void test_destructor_attribute(void)
{
return;
}
int main(void) {
return 0;
}
''',
'HAVE_DESTRUCTOR_ATTRIBUTE',
addmain=False,
2018-07-03 14:34:29 +10:00
strict=True,
2015-02-24 13:26:29 +13:00
msg='Checking for library destructor support')
2020-10-30 12:55:54 +01:00
# check HAVE_PRAGMA_FINI alternatively
if not conf.env.HAVE_DESTRUCTOR_ATTRIBUTE:
conf.CHECK_CODE('''
#pragma fini (test_fini)
void test_fini(void)
{
return;
}
int main(void) {
return 0;
}
''',
'HAVE_PRAGMA_FINI',
addmain=False,
strict=True,
msg='Checking for pragma fini support')
2016-03-08 10:23:09 +13:00
conf.CHECK_CODE('''
void test_attribute(void) __attribute__ (());
void test_attribute(void)
{
return;
}
int main(void) {
return 0;
}
''',
'HAVE___ATTRIBUTE__',
addmain=False,
2018-07-03 14:34:29 +10:00
strict=True,
2016-03-08 10:23:09 +13:00
msg='Checking for __attribute__')
2023-03-14 08:53:49 +01:00
# Solaris by default uses draft versions of some functions unless you set
# _POSIX_PTHREAD_SEMANTICS
2020-10-18 20:15:36 +02:00
if sys.platform.startswith('sunos'):
conf.DEFINE('_POSIX_PTHREAD_SEMANTICS', 1)
2013-06-20 18:26:04 +02:00
if sys.platform.startswith('aix'):
2010-12-11 19:20:51 +03:00
conf.DEFINE('_ALL_SOURCE', 1, add_to_cflags=True)
# Might not be needed if ALL_SOURCE is defined
# conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
2010-12-11 13:13:42 +03:00
2010-03-24 12:56:30 +11:00
# we should use the PIC options in waf instead
2023-08-29 14:22:58 +12:00
# Some compiler didn't support -fPIC but just print a warning
2010-10-28 02:12:53 +04:00
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 12:56:30 +11: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
2023-08-29 14:22:58 +12:00
# of files)
2010-10-31 18:50:15 +03:00
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 15:16:26 +02:00
conf.CHECK_INLINE()
2010-03-24 12:56:30 +11:00
# check for pkgconfig
2015-03-07 15:31:19 +01:00
conf.CHECK_CFG(atleast_pkgconfig_version='0.0.0')
2010-03-24 12:56:30 +11:00
conf.DEFINE('_GNU_SOURCE', 1, add_to_cflags=True)
conf.DEFINE('_XOPEN_SOURCE_EXTENDED', 1, add_to_cflags=True)
2019-01-27 20:27:42 +01:00
#
# Needs to be defined before std*.h and string*.h are included
# As Python.h already brings string.h we need it in CFLAGS.
# See memset_s() details here:
# https://en.cppreference.com/w/c/string/byte/memset
#
2019-02-10 00:47:59 +01:00
if conf.CHECK_CFLAGS(['-D__STDC_WANT_LIB_EXT1__=1']):
2019-01-27 20:27:42 +01:00
conf.ADD_CFLAGS('-D__STDC_WANT_LIB_EXT1__=1')
2015-01-07 09:48:38 +01:00
# on Tru64 certain features are only available with _OSF_SOURCE set to 1
# and _XOPEN_SOURCE set to 600
if conf.env['SYSTEM_UNAME_SYSNAME'] == 'OSF1':
conf.DEFINE('_OSF_SOURCE', 1, add_to_cflags=True)
conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
# SCM_RIGHTS is only avail if _XOPEN_SOURCE iѕ defined on IRIX
if conf.env['SYSTEM_UNAME_SYSNAME'] == 'IRIX':
conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
conf.DEFINE('_BSD_TYPES', 1, add_to_cflags=True)
# Try to find the right extra flags for C99 initialisers
for f in ["", "-AC99", "-qlanglvl=extc99", "-qlanglvl=stdc99", "-c99"]:
if conf.CHECK_CFLAGS([f], '''
struct foo {int x;char y;};
struct foo bar = { .y = 'X', .x = 1 };
'''):
if f != "":
conf.ADD_CFLAGS(f)
break
2010-03-24 12:56:30 +11:00
# 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)
2012-03-10 10:26:10 +01:00
conf.CHECK_HEADERS('ctype.h', add_headers=True)
2018-10-05 09:35:40 +01:00
if sys.platform == 'darwin':
conf.DEFINE('_DARWIN_C_SOURCE', 1, add_to_cflags=True)
conf.DEFINE('_DARWIN_UNLIMITED_GETGROUPS', 1, add_to_cflags=True)
else:
2012-03-10 10:26:10 +01:00
conf.CHECK_HEADERS('standards.h', add_headers=True)
conf.CHECK_HEADERS('stdbool.h stdint.h stdarg.h vararg.h', add_headers=True)
2010-03-30 14:41:08 +11:00
conf.CHECK_HEADERS('limits.h assert.h')
2010-03-24 12:56:30 +11:00
# see if we need special largefile flags
2012-03-28 09:47:53 +11:00
if not conf.CHECK_LARGEFILE():
2023-08-29 14:22:58 +12:00
raise Errors.WafError('Samba requires large file support, but not available on this platform: sizeof(off_t) < 8')
2010-03-24 12:56:30 +11:00
2016-03-26 14:35:52 +01:00
if conf.env.HAVE_STDDEF_H and conf.env.HAVE_STDLIB_H:
2010-03-24 12:56:30 +11:00
conf.DEFINE('STDC_HEADERS', 1)
conf.CHECK_HEADERS('sys/time.h time.h', together=True)
2016-03-26 14:35:52 +01:00
if conf.env.HAVE_SYS_TIME_H and conf.env.HAVE_TIME_H:
2010-03-24 12:56:30 +11:00
conf.DEFINE('TIME_WITH_SYS_TIME', 1)
2010-10-17 21:58:22 +11:00
# cope with different extensions for libraries
2016-03-26 13:18:07 +01:00
(root, ext) = os.path.splitext(conf.env.cshlib_PATTERN)
2010-10-17 21:58:22 +11:00
if ext[0] == '.':
conf.define('SHLIBEXT', ext[1:], quote=True)
else:
conf.define('SHLIBEXT', "so", quote=True)
2010-03-24 12:56:30 +11:00
2023-08-29 14:22:58 +12:00
# First try a header check for cross-compile friendliness
2014-04-21 10:18:15 -03:00
conf.CHECK_CODE(code = """#ifdef __BYTE_ORDER
#define B __BYTE_ORDER
#elif defined(BYTE_ORDER)
#define B BYTE_ORDER
#endif
#ifdef __LITTLE_ENDIAN
#define LITTLE __LITTLE_ENDIAN
#elif defined(LITTLE_ENDIAN)
#define LITTLE LITTLE_ENDIAN
#endif
#if !defined(LITTLE) || !defined(B) || LITTLE != B
#error Not little endian.
#endif
2019-02-09 01:30:50 +01:00
int main(void) { return 0; }\n""",
2014-04-21 10:18:15 -03:00
addmain=False,
headers="endian.h sys/endian.h",
define="HAVE_LITTLE_ENDIAN")
conf.CHECK_CODE(code = """#ifdef __BYTE_ORDER
#define B __BYTE_ORDER
#elif defined(BYTE_ORDER)
#define B BYTE_ORDER
#endif
#ifdef __BIG_ENDIAN
#define BIG __BIG_ENDIAN
#elif defined(BIG_ENDIAN)
#define BIG BIG_ENDIAN
#endif
#if !defined(BIG) || !defined(B) || BIG != B
#error Not big endian.
#endif
2019-02-09 01:30:50 +01:00
int main(void) { return 0; }\n""",
2014-04-21 10:18:15 -03:00
addmain=False,
headers="endian.h sys/endian.h",
define="HAVE_BIG_ENDIAN")
if not conf.CONFIG_SET("HAVE_BIG_ENDIAN") and not conf.CONFIG_SET("HAVE_LITTLE_ENDIAN"):
# That didn't work! Do runtime test.
conf.CHECK_CODE("""union { int i; char c[sizeof(int)]; } u;
u.i = 0x01020304;
return u.c[0] == 0x04 && u.c[1] == 0x03 && u.c[2] == 0x02 && u.c[3] == 0x01 ? 0 : 1;""",
addmain=True, execute=True,
define='HAVE_LITTLE_ENDIAN',
msg="Checking for HAVE_LITTLE_ENDIAN - runtime")
conf.CHECK_CODE("""union { int i; char c[sizeof(int)]; } u;
u.i = 0x01020304;
return u.c[0] == 0x01 && u.c[1] == 0x02 && u.c[2] == 0x03 && u.c[3] == 0x04 ? 0 : 1;""",
addmain=True, execute=True,
define='HAVE_BIG_ENDIAN',
msg="Checking for HAVE_BIG_ENDIAN - runtime")
# Extra sanity check.
if conf.CONFIG_SET("HAVE_BIG_ENDIAN") == conf.CONFIG_SET("HAVE_LITTLE_ENDIAN"):
Logs.error("Failed endian determination. The PDP-11 is back?")
2018-07-27 14:26:35 +01:00
sys.exit(1)
2014-04-21 10:18:15 -03:00
else:
if conf.CONFIG_SET("HAVE_BIG_ENDIAN"):
conf.DEFINE('WORDS_BIGENDIAN', 1)
2010-03-24 12:56:30 +11:00
# 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")
2019-12-04 21:23:06 +13:00
conf.env.enable_fuzzing = False
2019-04-04 00:23:07 +02:00
conf.env.enable_libfuzzer = Options.options.enable_libfuzzer
2019-12-04 21:23:06 +13:00
conf.env.enable_afl_fuzzer = Options.options.enable_afl_fuzzer
if conf.env.enable_libfuzzer or conf.env.enable_afl_fuzzer:
conf.env.enable_fuzzing = True
2019-10-31 16:28:28 +13:00
conf.DEFINE('FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION', 1)
2019-11-06 12:24:18 +13:00
conf.env.FUZZ_TARGET_LDFLAGS = Options.options.FUZZ_TARGET_LDFLAGS
2019-04-04 00:23:07 +02:00
2010-03-24 12:56:30 +11:00
conf.SAMBA_BUILD_ENV()
def build(bld):
2010-04-23 08:24:34 +10:00
# give a more useful message if the source directory has moved
2018-01-31 11:48:43 +02:00
curdir = bld.path.abspath()
srcdir = bld.srcnode.abspath()
2019-11-04 17:07:44 +13:00
relpath = os.path.relpath(curdir, srcdir)
2010-04-23 08:24:34 +10:00
if relpath.find('../') != -1:
2018-01-31 11:48:43 +02:00
Logs.error('bld.path %s is not a child of %s' % (curdir, srcdir))
raise Errors.WafError('''The top source directory has moved. Please run distclean and reconfigure''')
2010-04-23 08:24:34 +10:00
2010-03-24 12:56:30 +11:00
bld.SETUP_BUILD_GROUPS()
bld.ENFORCE_GROUP_ORDERING()
bld.CHECK_PROJECT_RULES()