2009-07-27 23:30:41 +02:00
# -*- mode: python; -*-
2010-04-29 23:03:40 +02:00
# build file for MongoDB
# this requires scons
2009-01-06 00:19:56 +01:00
# you can get from http://www.scons.org
# then just type scons
2009-02-02 01:13:12 +01:00
# some common tasks
# build 64-bit mac and pushing to s3
2009-02-06 22:51:14 +01:00
# scons --64 s3dist
2009-02-11 03:37:18 +01:00
# scons --distname=0.8 s3dist
2009-02-12 15:10:11 +01:00
# all s3 pushes require settings.py and simples3
2009-02-02 01:13:12 +01:00
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
# This file, SConstruct, configures the build environment, and then delegates to
# several, subordinate SConscript files, which describe specific build rules.
2013-04-25 17:33:22 +02:00
import copy
2012-03-07 18:09:42 +01:00
import datetime
import os
2009-02-01 23:39:07 +01:00
import re
2015-01-21 21:51:32 +01:00
import shlex
2009-04-22 17:12:13 +02:00
import shutil
2012-03-07 18:09:42 +01:00
import stat
import sys
2013-03-23 20:30:36 +01:00
import textwrap
2014-07-11 19:58:13 +02:00
import uuid
2010-02-11 23:17:36 +01:00
from buildscripts import utils
2012-07-05 17:54:01 +02:00
from buildscripts import moduleconfig
2010-01-02 14:59:54 +01:00
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
import libdeps
2014-11-20 22:40:26 +01:00
EnsureSConsVersion ( 2 , 3 , 0 )
2009-01-06 00:19:56 +01:00
2014-02-18 13:21:13 +01:00
def versiontuple ( v ) :
return tuple ( map ( int , ( v . split ( " . " ) ) ) )
2015-03-30 18:14:42 +02:00
# --- OS identification ---
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
#
# This needs to precede the options section so that we can only offer some options on certain
2015-03-30 18:14:42 +02:00
# operating systems.
# This function gets the running OS as identified by Python
# It should only be used to set up defaults for options/variables, because
# its value could potentially be overridden by setting TARGET_OS on the
# command-line. Treat this output as the value of HOST_OS
def get_running_os_name ( ) :
running_os = os . sys . platform
if running_os . startswith ( ' linux ' ) :
running_os = ' linux '
elif running_os . startswith ( ' freebsd ' ) :
running_os = ' freebsd '
elif running_os . startswith ( ' openbsd ' ) :
running_os = ' openbsd '
elif running_os == ' sunos5 ' :
running_os = ' solaris '
elif running_os == ' win32 ' :
running_os = ' windows '
elif running_os == ' darwin ' :
running_os = ' osx '
else :
running_os = ' unknown '
return running_os
def env_get_os_name_wrapper ( self ) :
return env [ ' TARGET_OS ' ]
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
2015-03-30 18:14:42 +02:00
def is_os_raw ( target_os , os_list_to_check ) :
okay = False
posix_os_list = [ ' linux ' , ' openbsd ' , ' freebsd ' , ' osx ' , ' solaris ' ]
for p in os_list_to_check :
if p == ' posix ' and target_os in posix_os_list :
okay = True
break
elif p == target_os :
okay = True
break
return okay
# This function tests the running OS as identified by Python
# It should only be used to set up defaults for options/variables, because
# its value could potentially be overridden by setting TARGET_OS on the
# command-line. Treat this output as the value of HOST_OS
def is_running_os ( * os_list ) :
return is_os_raw ( get_running_os_name ( ) , os_list )
def env_os_is_wrapper ( self , * os_list ) :
return is_os_raw ( self [ ' TARGET_OS ' ] , os_list )
2011-11-15 00:05:08 +01:00
2009-01-14 16:58:32 +01:00
# --- options ----
2010-11-30 04:48:31 +01:00
options = { }
2012-03-07 18:09:42 +01:00
def add_option ( name , help , nargs , contributesToVariantDir ,
2014-04-11 21:28:03 +02:00
dest = None , default = None , type = " string " , choices = None , metavar = None , const = None ) :
2010-11-30 04:34:42 +01:00
if dest is None :
dest = name
2013-03-24 19:16:01 +01:00
if type == ' choice ' and not metavar :
metavar = ' [ ' + ' | ' . join ( choices ) + ' ] '
2010-11-30 04:34:42 +01:00
AddOption ( " -- " + name ,
dest = dest ,
2012-03-19 16:12:25 +01:00
type = type ,
2010-11-30 04:34:42 +01:00
nargs = nargs ,
action = " store " ,
2012-03-19 16:12:25 +01:00
choices = choices ,
2012-03-07 18:09:42 +01:00
default = default ,
2013-03-24 19:16:01 +01:00
metavar = metavar ,
2014-04-11 21:28:03 +02:00
const = const ,
2010-11-30 04:34:42 +01:00
help = help )
2010-11-30 04:48:31 +01:00
options [ name ] = { " help " : help ,
2012-08-10 19:32:42 +02:00
" nargs " : nargs ,
2012-03-19 16:12:25 +01:00
" contributesToVariantDir " : contributesToVariantDir ,
2012-08-10 19:32:42 +02:00
" dest " : dest ,
" default " : default }
2010-11-30 04:48:31 +01:00
2010-11-30 04:34:42 +01:00
def get_option ( name ) :
return GetOption ( name )
2014-01-17 22:55:29 +01:00
def has_option ( name ) :
2010-11-30 04:34:42 +01:00
x = get_option ( name )
if x is None :
return False
2010-11-30 04:48:31 +01:00
if x == False :
return False
2010-12-01 15:52:37 +01:00
if x == " " :
return False
2010-11-30 04:48:31 +01:00
return True
2012-03-24 15:26:41 +01:00
def use_system_version_of_library ( name ) :
return has_option ( ' use-system-all ' ) or has_option ( ' use-system- ' + name )
2011-08-20 00:09:18 +02:00
2013-12-22 16:30:25 +01:00
# Returns true if we have been configured to use a system version of any C++ library. If you
# add a new C++ library dependency that may be shimmed out to the system, add it to the below
# list.
def using_system_version_of_cxx_libraries ( ) :
cxx_library_names = [ " tcmalloc " , " boost " , " v8 " ]
return True in [ use_system_version_of_library ( x ) for x in cxx_library_names ]
2010-11-30 04:48:31 +01:00
def get_variant_dir ( ) :
2014-06-20 18:56:35 +02:00
build_dir = get_option ( ' build-dir ' ) . rstrip ( ' / ' )
2014-01-17 22:55:29 +01:00
if has_option ( ' variant-dir ' ) :
2014-06-20 18:56:35 +02:00
return ( build_dir + ' / ' + get_option ( ' variant-dir ' ) ) . rstrip ( ' / ' )
2013-03-12 01:10:47 +01:00
substitute = lambda x : re . sub ( " [:, \\ \\ /] " , " _ " , x )
2010-11-30 04:48:31 +01:00
a = [ ]
2013-03-12 01:10:47 +01:00
2010-11-30 04:48:31 +01:00
for name in options :
o = options [ name ]
if not has_option ( o [ " dest " ] ) :
continue
2012-03-19 16:12:25 +01:00
if not o [ " contributesToVariantDir " ] :
2010-11-30 04:48:31 +01:00
continue
2012-08-10 19:32:42 +02:00
if get_option ( o [ " dest " ] ) == o [ " default " ] :
continue
2013-03-12 01:10:47 +01:00
2010-11-30 04:48:31 +01:00
if o [ " nargs " ] == 0 :
a . append ( name )
else :
2013-03-12 01:10:47 +01:00
x = substitute ( get_option ( name ) )
2012-01-22 01:50:45 +01:00
a . append ( name + " _ " + x )
2013-03-12 01:10:47 +01:00
extras = [ ]
if has_option ( " extra-variant-dirs " ) :
extras = [ substitute ( x ) for x in get_option ( ' extra-variant-dirs ' ) . split ( ' , ' ) ]
if has_option ( " add-branch-to-variant-dir " ) :
extras + = [ " branch_ " + substitute ( utils . getGitBranch ( ) ) ]
2013-10-05 20:15:03 +02:00
if has_option ( ' cache ' ) :
2014-06-20 18:56:35 +02:00
s = " cached "
2013-10-05 20:15:03 +02:00
s + = " / " . join ( extras ) + " / "
2011-12-25 04:48:28 +01:00
else :
2015-03-30 18:14:42 +02:00
s = " $ {TARGET_ARCH} / "
2013-10-05 20:15:03 +02:00
a + = extras
if len ( a ) > 0 :
a . sort ( )
s + = " / " . join ( a ) + " / "
else :
s + = " normal/ "
2014-06-20 18:56:35 +02:00
return ( build_dir + ' / ' + s ) . rstrip ( ' / ' )
2013-03-12 01:10:47 +01:00
2012-04-03 17:17:18 +02:00
# build output
add_option ( " mute " , " do not display commandlines for compiling and linking, to reduce screen noise " , 0 , False )
2010-11-30 04:34:42 +01:00
# installation/packaging
2014-06-20 18:56:35 +02:00
add_option ( " prefix " , " installation prefix " , 1 , False , default = ' $BUILD_ROOT/install ' )
2010-11-30 04:34:42 +01:00
add_option ( " distname " , " dist name (0.8.0) " , 1 , False )
add_option ( " distmod " , " additional piece for full dist name " , 1 , False )
2014-06-19 17:49:38 +02:00
add_option ( " distarch " , " override the architecture name in dist output " , 1 , False )
2010-11-30 04:34:42 +01:00
add_option ( " nostrip " , " do not strip installed binaries " , 0 , False )
2013-03-12 01:10:47 +01:00
add_option ( " extra-variant-dirs " , " extra variant dir components, separated by commas " , 1 , False )
add_option ( " add-branch-to-variant-dir " , " add current git branch to the variant dir " , 0 , False )
2014-06-20 18:56:35 +02:00
add_option ( " build-dir " , " build output directory " , 1 , False , default = ' #build ' )
2014-01-17 22:55:29 +01:00
add_option ( " variant-dir " , " override variant subdirectory " , 1 , False )
2010-11-30 04:34:42 +01:00
2010-12-01 15:52:37 +01:00
# linking options
add_option ( " release " , " release build " , 0 , True )
2015-03-30 18:14:42 +02:00
2013-03-04 23:06:17 +01:00
add_option ( " lto " , " enable link time optimizations (experimental, except with MSVC) " , 0 , True )
2013-09-06 21:22:11 +02:00
add_option ( " dynamic-windows " , " dynamically link on Windows " , 0 , True )
2010-12-01 15:52:37 +01:00
2010-11-30 04:34:42 +01:00
# base compile flags
2014-08-11 16:03:42 +02:00
add_option ( " endian " , " endianness of target platform " , 1 , False , " endian " ,
type = " choice " , choices = [ " big " , " little " , " auto " ] , default = " auto " )
2014-11-04 20:20:38 +01:00
add_option ( " disable-minimum-compiler-version-enforcement " ,
" allow use of unsupported older compilers (NEVER for production builds) " ,
0 , False )
2010-11-30 04:34:42 +01:00
2011-07-14 00:37:26 +02:00
add_option ( " ssl " , " Enable SSL " , 0 , True )
2014-07-29 22:45:23 +02:00
add_option ( " ssl-fips-capability " , " Enable the ability to activate FIPS 140-2 mode " , 0 , True ) ;
2014-11-04 21:47:12 +01:00
add_option ( " wiredtiger " , " Enable wiredtiger " , " ? " , True , " wiredtiger " ,
type = " choice " , choices = [ " on " , " off " ] , const = " on " , default = " on " )
2010-11-30 04:34:42 +01:00
# library choices
2014-04-23 23:31:32 +02:00
js_engine_choices = [ ' v8-3.12 ' , ' v8-3.25 ' , ' none ' ]
2014-05-01 22:16:38 +02:00
add_option ( " js-engine " , " JavaScript scripting engine implementation " , 1 , False ,
2014-04-23 23:31:32 +02:00
type = ' choice ' , default = js_engine_choices [ 0 ] , choices = js_engine_choices )
2015-02-05 21:46:06 +01:00
add_option ( " server-js " , " Build mongod without JavaScript support " , 1 , False ,
type = ' choice ' , choices = [ " on " , " off " ] , const = " on " , default = " on " )
2013-03-01 21:50:58 +01:00
add_option ( " libc++ " , " use libc++ (experimental, requires clang) " , 0 , True )
2010-11-30 04:34:42 +01:00
2014-09-16 00:07:50 +02:00
add_option ( " use-glibcxx-debug " ,
" Enable the glibc++ debug implementations of the C++ standard libary " , 0 , True )
2010-11-30 04:34:42 +01:00
# mongo feature options
add_option ( " noshell " , " don ' t build shell " , 0 , True )
add_option ( " safeshell " , " don ' t let shell scripts run programs (still, don ' t run untrusted scripts) " , 0 , True )
2013-03-24 19:16:01 +01:00
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
# new style debug and optimize flags
2014-04-11 21:28:03 +02:00
add_option ( " dbg " , " Enable runtime debugging checks " , " ? " , True , " dbg " ,
type = " choice " , choices = [ " on " , " off " ] , const = " on " )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
2014-04-11 21:28:03 +02:00
add_option ( " opt " , " Enable compile-time optimization " , " ? " , True , " opt " ,
type = " choice " , choices = [ " on " , " off " ] , const = " on " )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
2014-05-30 20:38:37 +02:00
add_option ( " sanitize " , " enable selected sanitizers " , 1 , True , metavar = " san1,san2,...sanN " )
add_option ( " llvm-symbolizer " , " name of (or path to) the LLVM symbolizer " , 1 , False , default = " llvm-symbolizer " )
2013-03-24 19:16:01 +01:00
2010-11-30 04:34:42 +01:00
# debugging/profiling help
2015-03-30 18:14:42 +02:00
if is_running_os ( ' linux ' ) :
2012-11-07 04:03:03 +01:00
defaultAllocator = ' tcmalloc '
else :
defaultAllocator = ' system '
2012-08-10 19:32:42 +02:00
add_option ( " allocator " , " allocator to use (tcmalloc or system) " , 1 , True ,
2012-11-07 04:03:03 +01:00
default = defaultAllocator )
2010-11-30 04:34:42 +01:00
add_option ( " gdbserver " , " build in gdb server support " , 0 , True )
2012-03-02 21:36:33 +01:00
add_option ( " gcov " , " compile with flags for gcov " , 0 , True )
2010-11-30 04:34:42 +01:00
add_option ( " smokedbprefix " , " prefix to dbpath et al. for smoke tests " , 1 , False )
2012-02-11 04:08:13 +01:00
add_option ( " smokeauth " , " run smoke tests with --auth " , 0 , False )
2010-11-29 08:36:54 +01:00
2012-10-29 18:12:36 +01:00
add_option ( " use-sasl-client " , " Support SASL authentication in the client library " , 0 , False )
2012-08-10 19:32:42 +02:00
add_option ( " use-system-tcmalloc " , " use system version of tcmalloc library " , 0 , True )
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
add_option ( " use-system-pcre " , " use system version of pcre library " , 0 , True )
2014-11-04 21:47:12 +01:00
add_option ( " use-system-wiredtiger " , " use system version of wiredtiger library " , 0 , True )
2014-06-06 14:03:24 +02:00
# library choices
2015-03-02 19:41:22 +01:00
boost_choices = [ ' 1.56 ' ]
2014-06-06 14:03:24 +02:00
add_option ( " internal-boost " , " Specify internal boost version to use " , 1 , True ,
2015-03-02 19:41:22 +01:00
type = ' choice ' , default = boost_choices [ 0 ] , choices = boost_choices )
2014-06-06 14:03:24 +02:00
2015-01-20 21:30:47 +01:00
add_option ( " system-boost-lib-search-suffixes " ,
" Comma delimited sequence of boost library suffixes to search " ,
1 , False )
2012-03-02 17:13:09 +01:00
add_option ( " use-system-boost " , " use system version of boost libraries " , 0 , True )
2012-03-24 15:42:10 +01:00
add_option ( " use-system-snappy " , " use system version of snappy library " , 0 , True )
2014-11-03 23:15:00 +01:00
add_option ( " use-system-zlib " , " use system version of zlib library " , 0 , True )
2012-10-25 23:19:17 +02:00
add_option ( " use-system-v8 " , " use system version of v8 library " , 0 , True )
2012-03-26 16:33:16 +02:00
2013-06-03 20:33:18 +02:00
add_option ( " use-system-stemmer " , " use system version of stemmer " , 0 , True )
2013-11-09 21:38:08 +01:00
add_option ( " use-system-yaml " , " use system version of yaml " , 0 , True )
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
add_option ( " use-system-all " , " use all system libraries " , 0 , True )
2011-11-15 00:05:08 +01:00
2014-10-08 01:48:14 +02:00
# deprecated
2014-09-26 17:30:41 +02:00
add_option ( " use-new-tools " , " put new tools in the tarball " , 0 , False )
2011-12-27 23:14:32 +01:00
add_option ( " use-cpu-profiler " ,
" Link against the google-perftools profiler library " ,
2012-10-18 17:39:12 +02:00
0 , False )
2011-12-05 23:00:02 +01:00
2014-07-12 23:43:03 +02:00
add_option ( ' build-fast-and-loose ' , " looser dependency checking, ignored for --release builds " ,
' ? ' , False , type = " choice " , choices = [ " on " , " off " ] , const = " on " , default = " on " )
2013-03-14 19:23:30 +01:00
2014-04-29 23:34:05 +02:00
add_option ( ' disable-warnings-as-errors ' , " Don ' t add -Werror to compiler command line " , 0 , False )
2015-01-21 21:51:32 +01:00
add_option ( ' variables-help ' ,
" Print the help text for SCons variables " , 0 , False )
2015-03-30 18:14:42 +02:00
add_option ( " osx-version-min " , " minimum OS X version to support " , 1 , True )
win_version_min_choices = {
' vista ' : ( ' 0600 ' , ' 0000 ' ) ,
' win7 ' : ( ' 0601 ' , ' 0000 ' ) ,
2015-04-03 21:32:54 +02:00
' ws08r2 ' : ( ' 0601 ' , ' 0000 ' ) ,
2015-03-30 18:14:42 +02:00
' win8 ' : ( ' 0602 ' , ' 0000 ' ) ,
2015-04-03 21:32:54 +02:00
' win81 ' : ( ' 0603 ' , ' 0000 ' ) ,
2015-03-30 18:14:42 +02:00
}
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
2015-03-30 18:14:42 +02:00
add_option ( " win-version-min " , " minimum Windows version to support " , 1 , True ,
type = ' choice ' , default = None ,
choices = win_version_min_choices . keys ( ) )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
2013-10-05 20:15:03 +02:00
add_option ( ' cache ' ,
" Use an object cache rather than a per-build variant directory (experimental) " ,
0 , False )
add_option ( ' cache-dir ' ,
" Specify the directory to use for caching objects if --cache is in use " ,
2014-06-20 18:56:35 +02:00
1 , False , default = " $BUILD_ROOT/scons/cache " )
2013-10-05 20:15:03 +02:00
2015-04-08 03:06:55 +02:00
add_option ( ' variables-files ' ,
" Specify variables files to load " ,
1 , False , default = " " )
2015-03-25 04:02:41 +01:00
variable_parse_mode_choices = [ ' auto ' , ' posix ' , ' other ' ]
add_option ( ' variable-parse-mode ' ,
" Select which parsing mode is used to interpret command line variables " ,
1 , False ,
type = ' choice ' , default = variable_parse_mode_choices [ 0 ] ,
choices = variable_parse_mode_choices )
2015-04-06 20:28:26 +02:00
add_option ( ' modules ' ,
" Comma-separated list of modules to build. Empty means none. Default is all. " ,
1 , False )
2015-01-21 21:51:32 +01:00
# Setup the command-line variables
def variable_shlex_converter ( val ) :
2015-03-25 04:02:41 +01:00
parse_mode = get_option ( ' variable-parse-mode ' )
if parse_mode == ' auto ' :
2015-03-30 18:14:42 +02:00
parse_mode = ' other ' if is_running_os ( ' windows ' ) else ' posix '
2015-03-25 04:02:41 +01:00
return shlex . split ( val , posix = ( parse_mode == ' posix ' ) )
2015-01-21 21:51:32 +01:00
2015-03-09 20:12:13 +01:00
def variable_arch_converter ( val ) :
arches = {
' x86_64 ' : ' x86_64 ' ,
' amd64 ' : ' x86_64 ' ,
' emt64 ' : ' x86_64 ' ,
' x86 ' : ' i386 ' ,
}
val = val . lower ( )
if val in arches :
return arches [ val ]
# Uname returns a bunch of possible x86's on Linux.
# Check whether the value is an i[3456]86 processor.
if re . match ( r ' ^i[3-6]86$ ' , val ) :
return ' i386 '
# Return whatever val is passed in - hopefully it's legit
return val
# The Scons 'default' tool enables a lot of tools that we don't actually need to enable.
# On platforms like Solaris, it actually does the wrong thing by enabling the sunstudio
# toolchain first. As such it is simpler and more efficient to manually load the precise
# set of tools we need for each platform.
# If we aren't on a platform where we know the minimal set of tools, we fall back to loading
# the 'default' tool.
def decide_platform_tools ( ) :
2015-03-30 18:14:42 +02:00
if is_running_os ( ' windows ' ) :
2015-03-09 20:12:13 +01:00
# we only support MS toolchain on windows
return [ ' msvc ' , ' mslink ' , ' mslib ' ]
2015-03-30 18:14:42 +02:00
elif is_running_os ( ' linux ' , ' solaris ' ) :
2015-03-09 20:12:13 +01:00
return [ ' gcc ' , ' g++ ' , ' gnulink ' , ' ar ' ]
2015-03-30 18:14:42 +02:00
elif is_running_os ( ' osx ' ) :
2015-03-09 20:12:13 +01:00
return [ ' gcc ' , ' g++ ' , ' applelink ' , ' ar ' ]
else :
return [ " default " ]
def variable_tools_converter ( val ) :
tool_list = shlex . split ( val )
return tool_list + [ " jsheader " , " mergelib " , " mongo_unittest " , " textfile " ]
2015-04-08 03:06:55 +02:00
env_vars = Variables (
files = variable_shlex_converter ( get_option ( ' variables-files ' ) ) ,
args = ARGUMENTS
)
2015-01-21 21:51:32 +01:00
env_vars . Add ( ' ARFLAGS ' ,
help = ' Sets flags for the archiver ' ,
converter = variable_shlex_converter )
2015-04-08 03:06:55 +02:00
env_vars . Add ( ' CC ' ,
help = ' Select the C compiler to use ' )
2015-01-21 21:51:32 +01:00
env_vars . Add ( ' CCFLAGS ' ,
help = ' Sets flags for the C and C++ compiler ' ,
converter = variable_shlex_converter )
env_vars . Add ( ' CFLAGS ' ,
help = ' Sets flags for the C compiler ' ,
converter = variable_shlex_converter )
env_vars . Add ( ' CPPDEFINES ' ,
help = ' Sets pre-processor definitions for C and C++ ' ,
2015-03-26 23:00:00 +01:00
converter = variable_shlex_converter ,
default = [ ] )
2015-01-21 21:51:32 +01:00
env_vars . Add ( ' CPPPATH ' ,
help = ' Adds paths to the preprocessor search path ' ,
converter = variable_shlex_converter )
2015-04-08 03:06:55 +02:00
env_vars . Add ( ' CXX ' ,
help = ' Select the C++ compiler to use ' )
2015-01-21 21:51:32 +01:00
env_vars . Add ( ' CXXFLAGS ' ,
help = ' Sets flags for the C++ compiler ' ,
converter = variable_shlex_converter )
2015-04-10 20:07:49 +02:00
# Note: This probably is only really meaningful when configured via a variables file. It will
# also override whatever the SCons platform defaults would be.
env_vars . Add ( ' ENV ' ,
help = ' Sets the environment for subprocesses ' )
2015-03-09 20:12:13 +01:00
env_vars . Add ( ' HOST_ARCH ' ,
help = ' Sets the native architecture of the compiler ' ,
converter = variable_arch_converter ,
default = None )
2015-01-21 21:51:32 +01:00
env_vars . Add ( ' LIBPATH ' ,
help = ' Adds paths to the linker search path ' ,
converter = variable_shlex_converter )
env_vars . Add ( ' LIBS ' ,
help = ' Adds extra libraries to link against ' ,
converter = variable_shlex_converter )
env_vars . Add ( ' LINKFLAGS ' ,
help = ' Sets flags for the linker ' ,
converter = variable_shlex_converter )
2015-03-09 20:12:13 +01:00
env_vars . Add ( ' MSVC_USE_SCRIPT ' ,
help = ' Sets the script used to setup Visual Studio. ' )
env_vars . Add ( ' MSVC_VERSION ' ,
help = ' Sets the version of Visual Studio to use (e.g. 12.0, 11.0, 10.0) ' )
2015-03-23 17:43:09 +01:00
env_vars . Add ( ' RPATH ' ,
help = ' Set the RPATH for dynamic libraries and executables ' ,
converter = variable_shlex_converter )
2015-01-21 21:51:32 +01:00
env_vars . Add ( ' SHCCFLAGS ' ,
help = ' Sets flags for the C and C++ compiler when building shared libraries ' ,
converter = variable_shlex_converter )
env_vars . Add ( ' SHCFLAGS ' ,
help = ' Sets flags for the C compiler when building shared libraries ' ,
converter = variable_shlex_converter )
env_vars . Add ( ' SHCXXFLAGS ' ,
help = ' Sets flags for the C++ compiler when building shared libraries ' ,
converter = variable_shlex_converter )
env_vars . Add ( ' SHLINKFLAGS ' ,
help = ' Sets flags for the linker when building shared libraries ' ,
converter = variable_shlex_converter )
2015-03-09 20:12:13 +01:00
env_vars . Add ( ' TARGET_ARCH ' ,
help = ' Sets the architecture to build for ' ,
converter = variable_arch_converter ,
default = None )
2015-03-30 18:14:42 +02:00
env_vars . Add ( ' TARGET_OS ' ,
help = ' Sets the target OS to build for ' ,
2015-04-08 03:06:55 +02:00
default = get_running_os_name ( ) )
2015-03-30 18:14:42 +02:00
2015-03-09 20:12:13 +01:00
env_vars . Add ( ' TOOLS ' ,
help = ' Sets the list of SCons tools to add to the environment ' ,
converter = variable_tools_converter ,
default = decide_platform_tools ( ) )
2011-12-05 23:00:02 +01:00
# don't run configure if user calls --help
if GetOption ( ' help ' ) :
Return ( )
2015-04-08 03:06:55 +02:00
# -- Validate user provided options --
# A dummy environment that should *only* have the variables we have set. In practice it has
# some other things because SCons isn't quite perfect about keeping variable initialization
# scoped to Tools, but it should be good enough to do validation on any Variable values that
# came from the command line or from loaded files.
variables_only_env = Environment (
# Disable platform specific variable injection
platform = ( lambda x : ( ) ) ,
# But do *not* load any tools, since those might actually set variables. Note that this
# causes the value of our TOOLS variable to have no effect.
tools = [ ] ,
# Use the Variables specified above.
variables = env_vars ,
)
if ( ' CC ' in variables_only_env ) != ( ' CXX ' in variables_only_env ) :
print ( ' Cannot customize C compiler without customizing C++ compiler, and vice versa ' )
Exit ( 1 )
2009-01-14 16:58:32 +01:00
# --- environment setup ---
2014-06-20 18:56:35 +02:00
# If the user isn't using the # to indicate top-of-tree or $ to expand a variable, forbid
# relative paths. Relative paths don't really work as expected, because they end up relative to
# the top level SConstruct, not the invokers CWD. We could in theory fix this with
# GetLaunchDir, but that seems a step too far.
buildDir = get_option ( ' build-dir ' ) . rstrip ( ' / ' )
if buildDir [ 0 ] not in [ ' $ ' , ' # ' ] :
if not os . path . isabs ( buildDir ) :
print ( " Do not use relative paths with --build-dir " )
Exit ( 1 )
cacheDir = get_option ( ' cache-dir ' ) . rstrip ( ' / ' )
if cacheDir [ 0 ] not in [ ' $ ' , ' # ' ] :
2015-03-04 15:31:32 +01:00
if not os . path . isabs ( cacheDir ) :
2014-06-20 18:56:35 +02:00
print ( " Do not use relative paths with --cache-dir " )
Exit ( 1 )
installDir = get_option ( ' prefix ' ) . rstrip ( ' / ' )
if installDir [ 0 ] not in [ ' $ ' , ' # ' ] :
if not os . path . isabs ( installDir ) :
print ( " Do not use relative paths with --prefix " )
Exit ( 1 )
sconsDataDir = Dir ( buildDir ) . Dir ( ' scons ' )
SConsignFile ( str ( sconsDataDir . File ( ' sconsign ' ) ) )
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
2009-03-18 19:26:27 +01:00
def printLocalInfo ( ) :
import sys , SCons
print ( " scons version: " + SCons . __version__ )
print ( " python version: " + " " . join ( [ ` i ` for i in sys . version_info ] ) )
2009-04-22 17:12:13 +02:00
2009-03-18 19:26:27 +01:00
printLocalInfo ( )
2012-03-23 22:18:40 +01:00
boostLibs = [ " thread " , " filesystem " , " program_options " , " system " ]
2009-01-06 00:19:56 +01:00
2009-04-28 22:44:17 +02:00
onlyServer = len ( COMMAND_LINE_TARGETS ) == 0 or ( len ( COMMAND_LINE_TARGETS ) == 1 and str ( COMMAND_LINE_TARGETS [ 0 ] ) in [ " mongod " , " mongos " , " test " ] )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
releaseBuild = has_option ( " release " )
2014-04-11 21:28:03 +02:00
dbg_opt_mapping = {
# --dbg, --opt : dbg opt
( None , None ) : ( False , True ) ,
( None , " on " ) : ( False , True ) ,
( None , " off " ) : ( False , False ) ,
( " on " , None ) : ( True , False ) , # special case interaction
( " on " , " on " ) : ( True , True ) ,
( " on " , " off " ) : ( True , False ) ,
( " off " , None ) : ( False , True ) ,
( " off " , " on " ) : ( False , True ) ,
( " off " , " off " ) : ( False , False ) ,
}
debugBuild , optBuild = dbg_opt_mapping [ ( get_option ( ' dbg ' ) , get_option ( ' opt ' ) ) ]
if releaseBuild and ( debugBuild or not optBuild ) :
print ( " Error: A --release build may not have debugging, and must have optimization " )
Exit ( 1 )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
2015-04-16 22:22:56 +02:00
noshell = has_option ( " noshell " )
2009-05-08 23:02:32 +02:00
2014-04-23 23:31:32 +02:00
jsEngine = get_option ( " js-engine " )
2015-02-05 21:46:06 +01:00
serverJs = get_option ( " server-js " ) == " on "
2014-04-23 23:31:32 +02:00
usev8 = ( jsEngine != ' none ' )
v8version = jsEngine [ 3 : ] if jsEngine . startswith ( ' v8- ' ) else ' none '
v8suffix = ' ' if v8version == ' 3.12 ' else ' - ' + v8version
2009-05-08 23:02:32 +02:00
2015-02-05 21:46:06 +01:00
if not serverJs and not usev8 :
print ( " Warning: --server-js=off is not needed with --js-engine=none " )
2015-02-26 21:08:41 +01:00
def getMongoCodeVersion ( ) :
with open ( " version.txt " ) as version_txt :
content = version_txt . readlines ( )
if len ( content ) != 1 :
print ( " Malformed version file " )
Exit ( 1 )
return content [ 0 ] . strip ( )
2014-07-09 15:22:38 +02:00
# We defer building the env until we have determined whether we want certain values. Some values
# in the env actually have semantics for 'None' that differ from being absent, so it is better
# to build it up via a dict, and then construct the Environment in one shot with kwargs.
#
2014-06-20 18:56:35 +02:00
# Yes, BUILD_ROOT vs BUILD_DIR is confusing. Ideally, BUILD_DIR would actually be called
# VARIANT_DIR, and at some point we should probably do that renaming. Until we do though, we
# also need an Environment variable for the argument to --build-dir, which is the parent of all
# variant dirs. For now, we call that BUILD_ROOT. If and when we s/BUILD_DIR/VARIANT_DIR/g,
# then also s/BUILD_ROOT/BUILD_DIR/g.
2014-07-09 15:22:38 +02:00
envDict = dict ( BUILD_ROOT = buildDir ,
BUILD_DIR = get_variant_dir ( ) ,
DIST_ARCHIVE_SUFFIX = ' .tgz ' ,
MODULE_BANNERS = [ ] ,
ARCHIVE_ADDITION_DIR_MAP = { } ,
ARCHIVE_ADDITIONS = [ ] ,
PYTHON = utils . find_python ( ) ,
SERVER_ARCHIVE = ' $ {SERVER_DIST_BASENAME} $ {DIST_ARCHIVE_SUFFIX} ' ,
UNITTEST_ALIAS = ' unittests ' ,
# TODO: Move unittests.txt to $BUILD_DIR, but that requires
# changes to MCI.
UNITTEST_LIST = ' $BUILD_ROOT/unittests.txt ' ,
CONFIGUREDIR = sconsDataDir . Dir ( ' sconf_temp ' ) ,
CONFIGURELOG = sconsDataDir . File ( ' config.log ' ) ,
INSTALL_DIR = installDir ,
2015-02-26 21:08:41 +01:00
MONGO_GIT_VERSION = utils . getGitVersion ( ) ,
MONGO_CODE_VERSION = getMongoCodeVersion ( ) ,
2015-03-26 23:00:00 +01:00
CONFIG_HEADER_DEFINES = { } ,
2014-07-09 15:22:38 +02:00
)
2015-01-21 21:51:32 +01:00
env = Environment ( variables = env_vars , * * envDict )
2014-07-09 15:22:38 +02:00
del envDict
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
2015-03-30 18:14:42 +02:00
env . AddMethod ( env_os_is_wrapper , ' TargetOSIs ' )
env . AddMethod ( env_get_os_name_wrapper , ' GetTargetOSName ' )
2015-01-21 21:51:32 +01:00
if has_option ( ' variables-help ' ) :
print env_vars . GenerateHelpText ( env )
Exit ( 0 )
unknown_vars = env_vars . UnknownVariables ( )
if unknown_vars :
print " Unknown variables specified: {0} " . format ( " , " . join ( unknown_vars . keys ( ) ) )
Exit ( 1 )
2015-03-26 23:00:00 +01:00
def set_config_header_define ( env , varname , varval = 1 ) :
env [ ' CONFIG_HEADER_DEFINES ' ] [ varname ] = varval
env . AddMethod ( set_config_header_define , ' SetConfigHeaderDefine ' )
2015-03-09 20:12:13 +01:00
detectEnv = env . Clone ( )
2015-03-30 18:14:42 +02:00
2015-03-09 20:12:13 +01:00
# Identify the toolchain in use. We currently support the following:
# These macros came from
# http://nadeausoftware.com/articles/2012/10/c_c_tip_how_detect_compiler_name_and_version_using_compiler_predefined_macros
toolchain_macros = {
' GCC ' : ' defined(__GNUC__) && !defined(__clang__) ' ,
' clang ' : ' defined(__clang__) ' ,
' MSVC ' : ' defined(_MSC_VER) '
}
def CheckForToolchain ( context , toolchain , lang_name , compiler_var , source_suffix ) :
test_body = textwrap . dedent ( """
#if {0}
/ * we are using toolchain { 0 } * /
#else
#error
#endif
""" .format(toolchain_macros[toolchain]))
print_tuple = ( lang_name , context . env [ compiler_var ] , toolchain )
context . Message ( ' Checking if %s compiler " %s " is %s ... ' % print_tuple )
# Strip indentation from the test body to ensure that the newline at the end of the
# endif is the last character in the file (rather than a line of spaces with no
# newline), and that all of the preprocessor directives start at column zero. Both of
# these issues can trip up older toolchains.
result = context . TryCompile ( test_body , source_suffix )
context . Result ( result )
return result
# These preprocessor macros came from
# http://nadeausoftware.com/articles/2012/02/c_c_tip_how_detect_processor_type_using_compiler_predefined_macros
processor_macros = {
' x86_64 ' : ( ' __x86_64 ' , ' _M_AMD64 ' ) ,
' i386 ' : ( ' __i386 ' , ' _M_IX86 ' ) ,
' sparc ' : ( ' __sparc ' ) ,
' PowerPC ' : ( ' __powerpc__ ' , ' __PPC ' ) ,
' arm ' : ( ' __arm__ ' ) ,
' arm64 ' : ( ' __arm64__ ' , ' __aarch64__ ' ) ,
}
def CheckForProcessor ( context , which_arch ) :
def run_compile_check ( arch ) :
full_macros = " || " . join ( [ " defined( %s ) " % ( v ) for v in processor_macros [ arch ] ] )
test_body = """
#if {0}
/ * Detected { 1 } * /
#else
#error not {1}
#endif
""" .format(full_macros, arch)
return context . TryCompile ( textwrap . dedent ( test_body ) , " .c " )
if which_arch :
ret = run_compile_check ( which_arch )
context . Message ( ' Checking if target processor is %s ' % which_arch )
context . Result ( ret )
return ret ;
for k in processor_macros . keys ( ) :
ret = run_compile_check ( k )
if ret :
context . Result ( ' Detected a %s processor ' % k )
return k
context . Result ( ' Could not detect processor model/architecture ' )
return False
2015-03-30 18:14:42 +02:00
# Taken from http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
os_macros = {
" windows " : " _WIN32 " ,
" solaris " : " __sun " ,
" freebsd " : " __FreeBSD__ " ,
" openbsd " : " __OpenBSD__ " ,
" osx " : " __APPLE__ " ,
" linux " : " __linux__ " ,
}
def CheckForOS ( context , which_os ) :
test_body = """
#if defined({0})
/ * detected { 1 } * /
#else
#error
#endif
""" .format(os_macros[which_os], which_os)
context . Message ( ' Checking if target OS {0} is supported by the toolchain ' . format ( which_os ) )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .c " )
context . Result ( ret )
return ret
2015-03-09 20:12:13 +01:00
detectConf = Configure ( detectEnv , help = False , custom_tests = {
' CheckForToolchain ' : CheckForToolchain ,
' CheckForProcessor ' : CheckForProcessor ,
2015-03-30 18:14:42 +02:00
' CheckForOS ' : CheckForOS ,
2015-03-09 20:12:13 +01:00
} )
if not detectConf . CheckCXX ( ) :
print " C++ compiler %s doesn ' t work " % ( detectEnv [ ' CXX ' ] )
Exit ( 1 )
if not detectConf . CheckCC ( ) :
print " C compiler %s doesn ' t work " % ( detectEnv [ ' CC ' ] )
Exit ( 1 )
toolchain_search_sequence = [ " GCC " , " clang " ]
2015-03-30 18:14:42 +02:00
if is_running_os ( ' windows ' ) :
2015-03-09 20:12:13 +01:00
toolchain_search_sequence = [ ' MSVC ' , ' clang ' , ' GCC ' ]
for candidate_toolchain in toolchain_search_sequence :
if detectConf . CheckForToolchain ( candidate_toolchain , " C++ " , " CXX " , " .cpp " ) :
detected_toolchain = candidate_toolchain
break
if not detected_toolchain :
print " Couldn ' t identity the C++ compiler "
Exit ( 1 )
if not detectConf . CheckForToolchain ( detected_toolchain , " C " , " CC " , " .c " ) :
print " C compiler does not match identified C++ compiler "
Exit ( 1 )
# Now that we've detected the toolchain, we add methods to the env
# to get the canonical name of the toolchain and to test whether
# scons is using a particular toolchain.
def get_toolchain_name ( self ) :
return detected_toolchain . lower ( )
def is_toolchain ( self , * args ) :
actual_toolchain = self . ToolchainName ( )
for v in args :
if v . lower ( ) == actual_toolchain :
return True
return False
env . AddMethod ( get_toolchain_name , ' ToolchainName ' )
env . AddMethod ( is_toolchain , ' ToolchainIs ' )
if env [ ' TARGET_ARCH ' ] :
if not detectConf . CheckForProcessor ( env [ ' TARGET_ARCH ' ] ) :
print " Could not detect processor specified in TARGET_ARCH variable "
Exit ( 1 )
else :
detected_processor = detectConf . CheckForProcessor ( None )
if not detected_processor :
Exit ( 1 )
env [ ' TARGET_ARCH ' ] = detected_processor
2015-03-30 18:14:42 +02:00
if env [ ' TARGET_OS ' ] not in os_macros :
print " No special config for [ {0} ] which probably means it won ' t work " . format ( env [ ' TARGET_OS ' ] )
elif not detectConf . CheckForOS ( env [ ' TARGET_OS ' ] ) :
print " TARGET_OS is not supported by compiler "
Exit ( 1 )
2015-03-09 20:12:13 +01:00
detectConf . Finish ( )
if not env [ ' HOST_ARCH ' ] :
env [ ' HOST_ARCH ' ] = env [ ' TARGET_ARCH ' ]
2015-03-30 18:14:42 +02:00
# In some places we have POSIX vs Windows cpp files, and so there's an additional
# env variable to interpolate their names in child sconscripts
env [ ' TARGET_OS_FAMILY ' ] = ' posix ' if env . TargetOSIs ( ' posix ' ) else env . GetTargetOSName ( )
2013-10-05 20:15:03 +02:00
if has_option ( " cache " ) :
if has_option ( " release " ) :
print ( " Using the experimental --cache option is not permitted for --release builds " )
Exit ( 1 )
2013-10-08 21:40:13 +02:00
if has_option ( " gcov " ) :
print ( " Mixing --cache and --gcov doesn ' t work correctly yet. See SERVER-11084 " )
Exit ( 1 )
2014-06-20 18:56:35 +02:00
env . CacheDir ( str ( env . Dir ( cacheDir ) ) )
2013-10-05 20:15:03 +02:00
2013-09-19 21:39:50 +02:00
if optBuild :
2015-03-26 23:00:00 +01:00
env . SetConfigHeaderDefine ( " MONGO_CONFIG_OPTIMIZED_BUILD " )
2013-06-13 17:07:34 +02:00
2014-07-12 23:43:03 +02:00
# Ignore requests to build fast and loose for release builds.
if get_option ( ' build-fast-and-loose ' ) == " on " and not has_option ( ' release ' ) :
2013-03-14 19:23:30 +01:00
# See http://www.scons.org/wiki/GoFastButton for details
env . Decider ( ' MD5-timestamp ' )
env . SetOption ( ' max_drift ' , 1 )
2012-04-03 17:17:18 +02:00
if has_option ( ' mute ' ) :
env . Append ( CCCOMSTR = " Compiling $TARGET " )
env . Append ( CXXCOMSTR = env [ " CCCOMSTR " ] )
2013-05-22 03:07:48 +02:00
env . Append ( SHCCCOMSTR = " Compiling $TARGET " )
env . Append ( SHCXXCOMSTR = env [ " SHCCCOMSTR " ] )
2012-04-03 17:17:18 +02:00
env . Append ( LINKCOMSTR = " Linking $TARGET " )
2013-05-22 03:07:48 +02:00
env . Append ( SHLINKCOMSTR = env [ " LINKCOMSTR " ] )
2012-04-03 17:17:18 +02:00
env . Append ( ARCOMSTR = " Generating library $TARGET " )
2014-08-11 16:03:42 +02:00
endian = get_option ( " endian " )
if endian == " auto " :
endian = sys . byteorder
if endian == " little " :
2015-03-26 23:00:00 +01:00
env . SetConfigHeaderDefine ( " MONGO_CONFIG_BYTE_ORDER " , " 1234 " )
2014-08-11 16:03:42 +02:00
elif endian == " big " :
2015-03-26 23:00:00 +01:00
env . SetConfigHeaderDefine ( " MONGO_CONFIG_BYTE_ORDER " , " 4321 " )
2014-08-11 16:03:42 +02:00
2014-07-11 19:58:13 +02:00
env [ ' _LIBDEPS ' ] = ' $_LIBDEPS_OBJS '
if env [ ' _LIBDEPS ' ] == ' $_LIBDEPS_OBJS ' :
# The libraries we build in LIBDEPS_OBJS mode are just placeholders for tracking dependencies.
# This avoids wasting time and disk IO on them.
def write_uuid_to_file ( env , target , source ) :
with open ( env . File ( target [ 0 ] ) . abspath , ' w ' ) as fake_lib :
fake_lib . write ( str ( uuid . uuid4 ( ) ) )
fake_lib . write ( ' \n ' )
def noop_action ( env , target , source ) :
pass
env [ ' ARCOM ' ] = write_uuid_to_file
env [ ' ARCOMSTR ' ] = ' Generating placeholder library $TARGET '
env [ ' RANLIBCOM ' ] = noop_action
env [ ' RANLIBCOMSTR ' ] = ' Skipping ranlib for $TARGET '
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
libdeps . setup_environment ( env )
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' linux ' , ' freebsd ' ) :
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
env [ ' LINK_LIBGROUP_START ' ] = ' -Wl,--start-group '
env [ ' LINK_LIBGROUP_END ' ] = ' -Wl,--end-group '
2015-03-30 18:14:42 +02:00
elif env . TargetOSIs ( ' osx ' ) :
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
env [ ' LINK_LIBGROUP_START ' ] = ' '
env [ ' LINK_LIBGROUP_END ' ] = ' '
2015-03-30 18:14:42 +02:00
elif env . TargetOSIs ( ' solaris ' ) :
2012-01-18 23:10:11 +01:00
env [ ' LINK_LIBGROUP_START ' ] = ' -z rescan '
2012-01-30 21:43:19 +01:00
env [ ' LINK_LIBGROUP_END ' ] = ' '
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
2009-04-23 22:51:51 +02:00
# ---- other build setup -----
2015-03-26 15:13:36 +01:00
if debugBuild :
env . SetConfigHeaderDefine ( " MONGO_CONFIG_DEBUG_BUILD " )
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' linux ' ) :
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
env . Append ( LIBS = [ ' m ' ] )
2009-07-07 17:12:39 +02:00
2015-03-30 18:14:42 +02:00
elif env . TargetOSIs ( ' solaris ' ) :
2014-08-22 22:44:01 +02:00
env . Append ( LIBS = [ " socket " , " resolv " , " lgrp " ] )
2009-02-01 15:06:49 +01:00
2015-03-30 18:14:42 +02:00
elif env . TargetOSIs ( ' freebsd ' ) :
2012-06-11 22:28:11 +02:00
env . Append ( LIBS = [ " kvm " ] )
2012-06-08 23:37:38 +02:00
env . Append ( CCFLAGS = [ " -fno-omit-frame-pointer " ] )
2009-05-27 16:44:45 +02:00
2015-03-30 18:14:42 +02:00
elif env . TargetOSIs ( ' openbsd ' ) :
2014-02-17 23:51:34 +01:00
env . Append ( LIBS = [ " kvm " ] )
2010-06-20 22:29:03 +02:00
2015-03-30 18:14:42 +02:00
elif env . TargetOSIs ( ' windows ' ) :
2013-09-06 21:22:11 +02:00
dynamicCRT = has_option ( " dynamic-windows " )
2009-07-27 19:50:25 +02:00
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
env [ ' DIST_ARCHIVE_SUFFIX ' ] = ' .zip '
2013-04-02 23:15:13 +02:00
2013-04-03 00:09:37 +02:00
# If tools configuration fails to set up 'cl' in the path, fall back to importing the whole
# shell environment and hope for the best. This will work, for instance, if you have loaded
# an SDK shell.
2009-12-29 20:23:48 +01:00
for pathdir in env [ ' ENV ' ] [ ' PATH ' ] . split ( os . pathsep ) :
2012-09-02 14:21:46 +02:00
if os . path . exists ( os . path . join ( pathdir , ' cl.exe ' ) ) :
break
2009-12-29 20:23:48 +01:00
else :
2013-04-03 00:09:37 +02:00
print ( " NOTE: Tool configuration did not find ' cl ' compiler, falling back to os environment " )
2012-09-02 14:21:46 +02:00
env [ ' ENV ' ] = dict ( os . environ )
2009-12-29 20:23:48 +01:00
2015-03-26 23:00:00 +01:00
env . Append ( CPPDEFINES = [
# This tells the Windows compiler not to link against the .lib files
# and to use boost as a bunch of header-only libraries
" BOOST_ALL_NO_LIB " ,
] )
2010-06-14 18:40:39 +02:00
env . Append ( CPPDEFINES = [ " _UNICODE " ] )
env . Append ( CPPDEFINES = [ " UNICODE " ] )
2009-05-22 19:40:32 +02:00
2010-06-01 23:25:25 +02:00
# /EHsc exception handling style for visual studio
# /W3 warning level
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " /EHsc " , " /W3 " ] )
2010-06-01 23:25:25 +02:00
# some warnings we don't like:
2011-12-27 22:15:21 +01:00
# c4355
# 'this' : used in base member initializer list
# The this pointer is valid only within nonstatic member functions. It cannot be used in the initializer list for a base class.
# c4800
# 'type' : forcing value to bool 'true' or 'false' (performance warning)
# This warning is generated when a value that is not bool is assigned or coerced into type bool.
# c4267
# 'var' : conversion from 'size_t' to 'type', possible loss of data
# When compiling with /Wp64, or when compiling on a 64-bit operating system, type is 32 bits but size_t is 64 bits when compiling for 64-bit targets. To fix this warning, use size_t instead of a type.
# c4244
# 'conversion' conversion from 'type1' to 'type2', possible loss of data
# An integer type is converted to a smaller integer type.
2014-02-18 23:18:17 +01:00
# c4290
# C++ exception specification ignored except to indicate a function is not __declspec(nothrow
# A function is declared using exception specification, which Visual C++ accepts but does not
# implement
2014-09-19 15:17:59 +02:00
# c4068
# unknown pragma -- added so that we can specify unknown pragmas for other compilers
2014-09-23 17:47:48 +02:00
# c4351
# on extremely old versions of MSVC (pre 2k5), default constructing an array member in a
# constructor's initialization list would not zero the array members "in some cases".
# since we don't target MSVC versions that old, this warning is safe to ignore.
env . Append ( CCFLAGS = [ " /wd4355 " , " /wd4800 " , " /wd4267 " , " /wd4244 " ,
" /wd4290 " , " /wd4068 " , " /wd4351 " ] )
2013-12-18 18:57:34 +01:00
# some warnings we should treat as errors:
2015-04-03 21:32:54 +02:00
# c4013
# 'function' undefined; assuming extern returning int
# This warning occurs when files compiled for the C language use functions not defined
# in a header file.
2013-12-18 18:57:34 +01:00
# c4099
# identifier' : type name first seen using 'objecttype1' now seen using 'objecttype2'
# This warning occurs when classes and structs are declared with a mix of struct and class
# which can cause linker failures
2015-03-12 18:26:30 +01:00
# c4930
# 'identifier': prototyped function not called (was a variable definition intended?)
# This warning indicates a most-vexing parse error, where a user declared a function that
# was probably intended as a variable definition. A common example is accidentally
# declaring a function called lock that takes a mutex when one meant to create a guard
# object called lock on the stack.
2015-04-03 21:32:54 +02:00
env . Append ( CCFLAGS = [ " /we4013 " , " /we4099 " , " /we4930 " ] )
2013-12-18 18:57:34 +01:00
2013-04-02 23:15:13 +02:00
env . Append ( CPPDEFINES = [ " _CONSOLE " , " _CRT_SECURE_NO_WARNINGS " ] )
2009-01-08 00:05:22 +01:00
2011-05-30 06:30:10 +02:00
# this would be for pre-compiled headers, could play with it later
2012-03-24 16:05:08 +01:00
#env.Append( CCFLAGS=['/Yu"pch.h"'] )
2009-06-01 17:28:03 +02:00
2011-05-30 06:30:10 +02:00
# docs say don't use /FD from command line (minimal rebuild)
2012-03-07 21:43:50 +01:00
# /Gy function level linking (implicit when using /Z7)
# /Z7 debug info goes into each individual .obj file -- no .pdb created
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " /Z7 " , " /errorReport:none " ] )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
# /DEBUG will tell the linker to create a .pdb file
# which WinDbg and Visual Studio will use to resolve
# symbols if you want to debug a release-mode image.
# Note that this means we can't do parallel links in the build.
#
# Please also note that this has nothing to do with _DEBUG or optimization.
env . Append ( LINKFLAGS = [ " /DEBUG " ] )
# /MD: use the multithreaded, DLL version of the run-time library (MSVCRT.lib/MSVCR###.DLL)
# /MT: use the multithreaded, static version of the run-time library (LIBCMT.lib)
# /MDd: Defines _DEBUG, _MT, _DLL, and uses MSVCRTD.lib/MSVCRD###.DLL
# /MTd: Defines _DEBUG, _MT, and causes your application to use the
# debug multithread version of the run-time library (LIBCMTD.lib)
winRuntimeLibMap = {
#dyn #dbg
( False , False ) : " /MT " ,
( False , True ) : " /MTd " ,
( True , False ) : " /MD " ,
( True , True ) : " /MDd " ,
}
env . Append ( CCFLAGS = [ winRuntimeLibMap [ ( dynamicCRT , debugBuild ) ] ] )
if optBuild :
2012-08-04 22:52:10 +02:00
# /O2: optimize for speed (as opposed to size)
# /Oy-: disable frame pointer optimization (overrides /O2, only affects 32-bit)
2014-02-18 23:18:17 +01:00
# /INCREMENTAL: NO - disable incremental link - avoid the level of indirection for function
# calls
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
env . Append ( CCFLAGS = [ " /O2 " , " /Oy- " ] )
2014-02-18 23:18:17 +01:00
env . Append ( LINKFLAGS = [ " /INCREMENTAL:NO " ] )
2009-02-10 21:12:15 +01:00
else :
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
env . Append ( CCFLAGS = [ " /Od " ] )
if debugBuild and not optBuild :
# /RTC1: - Enable Stack Frame Run-Time Error Checking; Reports when a variable is used
# without having been initialized (implies /Od: no optimizations)
env . Append ( CCFLAGS = [ " /RTC1 " ] )
2012-08-05 02:17:11 +02:00
# This gives 32-bit programs 4 GB of user address space in WOW64, ignored in 64-bit builds
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
env . Append ( LINKFLAGS = [ " /LARGEADDRESSAWARE " ] )
2012-08-05 02:17:11 +02:00
2014-07-31 22:42:21 +02:00
env . Append ( LIBS = [ ' ws2_32.lib ' ,
' kernel32.lib ' ,
' advapi32.lib ' ,
' Psapi.lib ' ,
' DbgHelp.lib ' ,
' shell32.lib ' ,
2014-12-29 02:34:43 +01:00
' Iphlpapi.lib ' ,
' version.lib ' ] )
2010-01-11 12:53:39 +01:00
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
# v8 calls timeGetTime()
if usev8 :
2013-04-02 23:15:13 +02:00
env . Append ( LIBS = [ ' winmm.lib ' ] )
2009-07-27 22:24:09 +02:00
2015-04-16 22:22:56 +02:00
# When building on visual studio, this sets the name of the debug symbols file
if env . ToolchainIs ( ' msvc ' ) :
env [ ' PDB ' ] = ' $ {TARGET.base} .pdb '
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
env [ ' STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME ' ] = 1
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' posix ' ) :
2014-08-06 18:06:56 +02:00
2012-03-24 16:05:08 +01:00
# -Winvalid-pch Warn if a precompiled header (see Precompiled Headers) is found in the search path but can't be used.
2014-05-16 17:47:58 +02:00
env . Append ( CCFLAGS = [ " -fPIC " ,
2012-03-24 16:05:08 +01:00
" -fno-strict-aliasing " ,
" -ggdb " ,
" -pthread " ,
" -Wall " ,
" -Wsign-compare " ,
" -Wno-unknown-pragmas " ,
" -Winvalid-pch " ] )
2010-11-30 04:09:07 +01:00
# env.Append( " -Wconversion" ) TODO: this doesn't really work yet
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' linux ' , ' osx ' ) :
2014-04-29 23:34:05 +02:00
if not has_option ( " disable-warnings-as-errors " ) :
env . Append ( CCFLAGS = [ " -Werror " ] )
2011-03-11 23:06:41 +01:00
2012-03-07 18:09:42 +01:00
env . Append ( CXXFLAGS = [ " -Wnon-virtual-dtor " , " -Woverloaded-virtual " ] )
2014-05-16 17:47:58 +02:00
env . Append ( LINKFLAGS = [ " -fPIC " , " -pthread " ] )
2013-06-07 22:38:49 +02:00
2013-06-14 21:43:40 +02:00
# SERVER-9761: Ensure early detection of missing symbols in dependent libraries at program
# startup.
#
# TODO: Is it necessary to add to both linkflags and shlinkflags, or are LINKFLAGS
# propagated to SHLINKFLAGS?
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' osx ' ) :
2013-06-14 21:43:40 +02:00
env . Append ( LINKFLAGS = [ " -Wl,-bind_at_load " ] )
env . Append ( SHLINKFLAGS = [ " -Wl,-bind_at_load " ] )
else :
env . Append ( LINKFLAGS = [ " -Wl,-z,now " ] )
env . Append ( SHLINKFLAGS = [ " -Wl,-z,now " ] )
2013-06-07 22:38:49 +02:00
env . Append ( LINKFLAGS = [ " -rdynamic " ] )
2009-02-17 18:24:47 +01:00
env . Append ( LIBS = [ ] )
2009-01-08 00:05:22 +01:00
2010-09-11 00:59:29 +02:00
#make scons colorgcc friendly
2012-05-09 20:38:01 +02:00
for key in ( ' HOME ' , ' TERM ' ) :
try :
env [ ' ENV ' ] [ key ] = os . environ [ key ]
except KeyError :
pass
2010-09-11 00:59:29 +02:00
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' linux ' ) and has_option ( " gcov " ) :
2012-03-02 21:36:33 +01:00
env . Append ( CXXFLAGS = " -fprofile-arcs -ftest-coverage " )
env . Append ( LINKFLAGS = " -fprofile-arcs -ftest-coverage " )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
if optBuild :
2015-03-30 18:14:42 +02:00
env . Append ( CCFLAGS = [ " -O2 " ] )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
else :
env . Append ( CCFLAGS = [ " -O0 " ] )
2009-04-22 17:12:13 +02:00
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
if debugBuild :
if not optBuild :
env . Append ( CCFLAGS = [ " -fstack-protector " ] )
2014-01-23 23:59:33 +01:00
env . Append ( LINKFLAGS = [ " -fstack-protector " ] )
env . Append ( SHLINKFLAGS = [ " -fstack-protector " ] )
2009-01-30 16:29:07 +01:00
2011-07-14 00:37:26 +02:00
if has_option ( " ssl " ) :
2015-03-26 23:00:00 +01:00
env . SetConfigHeaderDefine ( " MONGO_CONFIG_SSL " )
2014-09-23 02:10:24 +02:00
env . Append ( MONGO_CRYPTO = [ " openssl " ] )
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' windows ' ) :
2012-12-14 23:17:21 +01:00
env . Append ( LIBS = [ " libeay32 " ] )
env . Append ( LIBS = [ " ssleay32 " ] )
else :
env . Append ( LIBS = [ " ssl " ] )
env . Append ( LIBS = [ " crypto " ] )
2014-07-29 22:45:23 +02:00
if has_option ( " ssl-fips-capability " ) :
2015-03-26 23:00:00 +01:00
env . SetConfigHeaderDefine ( " MONGO_CONFIG_SSL_FIPS " )
2014-09-23 02:10:24 +02:00
else :
env . Append ( MONGO_CRYPTO = [ " tom " ] )
2011-07-14 00:37:26 +02:00
2015-03-09 20:12:13 +01:00
wiredtiger = False
if get_option ( ' wiredtiger ' ) == ' on ' :
# Wiredtiger only supports 64-bit architecture, and will fail to compile on 32-bit
# so disable WiredTiger automatically on 32-bit since wiredtiger is on by default
if env [ ' TARGET_ARCH ' ] == ' i386 ' :
print " WiredTiger is not supported on 32-bit platforms "
print " Re-run scons with --wiredtiger=off to build on 32-bit platforms "
Exit ( 1 )
else :
wiredtiger = True
if env [ ' TARGET_ARCH ' ] == ' i386 ' :
# If we are using GCC or clang to target 32 bit, set the ISA minimum to 'nocona',
# and the tuning to 'generic'. The choice of 'nocona' is selected because it
# -- includes MMX extenions which we need for tcmalloc on 32-bit
# -- can target 32 bit
# -- is at the time of this writing a widely-deployed 10 year old microarchitecture
# -- is available as a target architecture from GCC 4.0+
# However, we only want to select an ISA, not the nocona specific scheduling, so we
# select the generic tuning. For installations where hardware and system compiler rev are
# contemporaries, the generic scheduling should be appropriate for a wide range of
# deployed hardware.
if env . ToolchainIs ( ' GCC ' , ' clang ' ) :
env . Append ( CCFLAGS = [ ' -march=nocona ' , ' -mtune=generic ' ] )
2014-10-02 00:51:09 +02:00
2015-04-16 22:22:56 +02:00
# Needed for auth tests since key files are stored in git with mode 644.
2015-03-30 18:14:42 +02:00
if not env . TargetOSIs ( ' windows ' ) :
2011-06-29 21:06:12 +02:00
for keysuffix in [ " 1 " , " 2 " ] :
keyfile = " jstests/libs/key %s " % keysuffix
os . chmod ( keyfile , stat . S_IWUSR | stat . S_IRUSR )
2015-01-20 21:30:47 +01:00
# boostSuffixList is used when using system boost to select a search sequence
# for boost libraries.
boostSuffixList = [ " -mt " , " " ]
if get_option ( " system-boost-lib-search-suffixes " ) is not None :
if not use_system_version_of_library ( " boost " ) :
print ( " The --system-boost-lib-search-suffixes option is only valid with --use-system-boost " )
Exit ( 1 )
boostSuffixList = get_option ( " system-boost-lib-search-suffixes " )
if boostSuffixList == " " :
boostSuffixList = [ ]
else :
boostSuffixList = boostSuffixList . split ( ' , ' )
# boostSuffix is used when using internal boost to select which version
# of boost is in play.
2014-06-06 14:03:24 +02:00
boostSuffix = " " ;
2012-03-24 15:26:41 +01:00
if not use_system_version_of_library ( " boost " ) :
2015-03-02 19:41:22 +01:00
# Boost release numbers are x.y.z, where z is usually 0 which we do not include in
# the internal-boost option
boostSuffix = " - %s .0 " % get_option ( " internal-boost " )
2012-03-02 17:13:09 +01:00
2012-10-18 22:07:39 +02:00
# discover modules, and load the (python) module for each module's build.py
2015-04-06 20:28:26 +02:00
mongo_modules = moduleconfig . discover_modules ( ' src/mongo/db/modules ' , get_option ( ' modules ' ) )
2012-10-18 22:07:39 +02:00
env [ ' MONGO_MODULES ' ] = [ m . name for m in mongo_modules ]
2009-01-18 21:32:00 +01:00
# --- check system ---
2012-03-23 22:18:40 +01:00
def doConfigure ( myenv ) :
2014-11-04 21:47:12 +01:00
global wiredtiger
2013-03-01 21:45:15 +01:00
2013-03-16 20:16:16 +01:00
# Check that the compilers work.
#
# TODO: Currently, we have some flags already injected. Eventually, this should test the
# bare compilers, and we should re-check at the very end that TryCompile and TryLink still
# work with the flags we have selected.
2015-03-09 20:12:13 +01:00
if myenv . ToolchainIs ( ' msvc ' ) :
2015-04-07 17:28:33 +02:00
compiler_minimum_string = " Microsoft Visual Studio 2013 Update 4 "
2014-11-04 20:20:38 +01:00
compiler_test_body = textwrap . dedent (
"""
#if !defined(_MSC_VER)
#error
#endif
2015-04-07 17:28:33 +02:00
#if _MSC_VER < 1800 || (_MSC_VER == 1800 && _MSC_FULL_VER < 180031101)
2014-11-04 20:20:38 +01:00
#error %s or newer is required to build MongoDB
#endif
int main ( int argc , char * argv [ ] ) {
return 0 ;
}
""" % c ompiler_minimum_string)
2015-03-09 20:12:13 +01:00
elif myenv . ToolchainIs ( ' gcc ' ) :
2014-12-16 22:19:29 +01:00
compiler_minimum_string = " GCC 4.8.2 "
2014-11-04 20:20:38 +01:00
compiler_test_body = textwrap . dedent (
"""
#if !defined(__GNUC__) || defined(__clang__)
#error
#endif
2014-12-16 22:19:29 +01:00
#if (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 8) || (__GNUC__ == 4 && __GNUC_MINOR__ == 8 && __GNUC_PATCHLEVEL__ < 2)
2014-11-04 20:20:38 +01:00
#error %s or newer is required to build MongoDB
#endif
int main ( int argc , char * argv [ ] ) {
return 0 ;
}
""" % c ompiler_minimum_string)
2015-03-09 20:12:13 +01:00
elif myenv . ToolchainIs ( ' clang ' ) :
2014-11-04 20:20:38 +01:00
compiler_minimum_string = " clang 3.4 (or Apple XCode 5.1.1) "
compiler_test_body = textwrap . dedent (
"""
#if !defined(__clang__)
#error
#endif
#if defined(__apple_build_version__)
#if __apple_build_version__ < 5030040
#error %s or newer is required to build MongoDB
#endif
#elif (__clang_major__ < 3) || (__clang_major__ == 3 && __clang_minor__ < 4)
#error %s or newer is required to build MongoDB
#endif
int main ( int argc , char * argv [ ] ) {
return 0 ;
}
""" % (compiler_minimum_string, compiler_minimum_string))
else :
print ( " Error: can ' t check compiler minimum; don ' t know this compiler... " )
Exit ( 1 )
def CheckForMinimumCompiler ( context , language ) :
extension_for = {
" C " : " .c " ,
" C++ " : " .cpp " ,
}
context . Message ( " Checking if %s compiler is %s or newer... " %
( language , compiler_minimum_string ) )
result = context . TryCompile ( compiler_test_body , extension_for [ language ] )
context . Result ( result )
return result ;
conf = Configure ( myenv , help = False , custom_tests = {
' CheckForMinimumCompiler ' : CheckForMinimumCompiler ,
} )
2015-03-09 20:12:13 +01:00
c_compiler_validated = conf . CheckForMinimumCompiler ( ' C ' )
2014-11-04 20:20:38 +01:00
cxx_compiler_validated = conf . CheckForMinimumCompiler ( ' C++ ' )
suppress_invalid = has_option ( " disable-minimum-compiler-version-enforcement " )
if releaseBuild and suppress_invalid :
print ( " --disable-minimum-compiler-version-enforcement is forbidden with --release " )
Exit ( 1 )
if not ( c_compiler_validated and cxx_compiler_validated ) :
if not suppress_invalid :
print ( " ERROR: Refusing to build with compiler that does not meet requirements " )
Exit ( 1 )
print ( " WARNING: Ignoring failed compiler version check per explicit user request. " )
print ( " WARNING: The build may fail, binaries may crash, or may run but corrupt data... " )
2013-04-02 23:15:13 +02:00
# Figure out what our minimum windows version is. If the user has specified, then use
2015-04-03 21:32:54 +02:00
# that.
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' windows ' ) :
2013-04-02 23:15:13 +02:00
if has_option ( ' win-version-min ' ) :
win_version_min = get_option ( ' win-version-min ' )
2015-04-03 21:32:54 +02:00
else :
# If no minimum version has beeen specified, use our default
win_version_min = ' vista '
2013-04-02 23:15:13 +02:00
2013-12-08 15:54:28 +01:00
env [ ' WIN_VERSION_MIN ' ] = win_version_min
2013-04-02 23:15:13 +02:00
win_version_min = win_version_min_choices [ win_version_min ]
env . Append ( CPPDEFINES = [ ( " _WIN32_WINNT " , " 0x " + win_version_min [ 0 ] ) ] )
env . Append ( CPPDEFINES = [ ( " NTDDI_VERSION " , " 0x " + win_version_min [ 0 ] + win_version_min [ 1 ] ) ] )
2014-11-04 21:47:12 +01:00
conf . Finish ( )
2014-04-04 19:44:48 +02:00
2013-03-01 21:45:15 +01:00
def AddFlagIfSupported ( env , tool , extension , flag , * * mutation ) :
def CheckFlagTest ( context , tool , extension , flag ) :
test_body = " "
2013-03-16 20:16:16 +01:00
context . Message ( ' Checking if %s compiler supports %s ... ' % ( tool , flag ) )
2013-03-01 21:45:15 +01:00
ret = context . TryCompile ( test_body , extension )
context . Result ( ret )
return ret
2015-03-09 20:12:13 +01:00
if env . ToolchainIs ( ' msvc ' ) :
2013-03-16 20:16:16 +01:00
print ( " AddFlagIfSupported is not currently supported with MSVC " )
2013-03-01 21:45:15 +01:00
Exit ( 1 )
2013-04-25 17:33:22 +02:00
test_mutation = mutation
2015-03-09 20:12:13 +01:00
if env . ToolchainIs ( ' gcc ' ) :
2013-04-25 17:33:22 +02:00
test_mutation = copy . deepcopy ( mutation )
2013-12-31 21:15:59 +01:00
# GCC helpfully doesn't issue a diagnostic on unknown flags of the form -Wno-xxx
2013-04-25 17:33:22 +02:00
# unless other diagnostics are triggered. That makes it tough to check for support
# for -Wno-xxx. To work around, if we see that we are testing for a flag of the
# form -Wno-xxx (but not -Wno-error=xxx), we also add -Wxxx to the flags. GCC does
# warn on unknown -Wxxx style flags, so this lets us probe for availablity of
# -Wno-xxx.
for kw in test_mutation . keys ( ) :
test_flags = test_mutation [ kw ]
for test_flag in test_flags :
if test_flag . startswith ( " -Wno- " ) and not test_flag . startswith ( " -Wno-error= " ) :
test_flags . append ( re . sub ( " ^-Wno- " , " -W " , test_flag ) )
cloned = env . Clone ( )
cloned . Append ( * * test_mutation )
2013-03-01 21:45:15 +01:00
# For GCC, we don't need anything since bad flags are already errors, but
# adding -Werror won't hurt. For clang, bad flags are only warnings, so we need -Werror
# to make them real errors.
cloned . Append ( CCFLAGS = [ ' -Werror ' ] )
2013-04-25 02:04:27 +02:00
conf = Configure ( cloned , help = False , custom_tests = {
2013-03-01 21:45:15 +01:00
' CheckFlag ' : lambda ( ctx ) : CheckFlagTest ( ctx , tool , extension , flag )
} )
available = conf . CheckFlag ( )
conf . Finish ( )
if available :
env . Append ( * * mutation )
return available
2013-03-13 22:00:06 +01:00
def AddToCFLAGSIfSupported ( env , flag ) :
return AddFlagIfSupported ( env , ' C ' , ' .c ' , flag , CFLAGS = [ flag ] )
2013-03-01 21:45:15 +01:00
def AddToCCFLAGSIfSupported ( env , flag ) :
return AddFlagIfSupported ( env , ' C ' , ' .c ' , flag , CCFLAGS = [ flag ] )
def AddToCXXFLAGSIfSupported ( env , flag ) :
return AddFlagIfSupported ( env , ' C++ ' , ' .cpp ' , flag , CXXFLAGS = [ flag ] )
2015-03-09 20:12:13 +01:00
if myenv . ToolchainIs ( ' clang ' , ' gcc ' ) :
2013-04-24 14:39:01 +02:00
# This warning was added in g++-4.8.
AddToCCFLAGSIfSupported ( myenv , ' -Wno-unused-local-typedefs ' )
2013-03-01 21:45:15 +01:00
# Clang likes to warn about unused functions, which seems a tad aggressive and breaks
# -Werror, which we want to be able to use.
AddToCCFLAGSIfSupported ( myenv , ' -Wno-unused-function ' )
# TODO: Note that the following two flags are added to CCFLAGS even though they are
# really C++ specific. We need to do this because SCons passes CXXFLAGS *before*
# CCFLAGS, but CCFLAGS contains -Wall, which re-enables the warnings we are trying to
# suppress. In the future, we should move all warning flags to CCWARNFLAGS and
# CXXWARNFLAGS and add these to CCOM and CXXCOM as appropriate.
#
# Clang likes to warn about unused private fields, but some of our third_party
# libraries have such things.
AddToCCFLAGSIfSupported ( myenv , ' -Wno-unused-private-field ' )
2013-04-24 21:52:17 +02:00
# Prevents warning about using deprecated features (such as auto_ptr in c++11)
# Using -Wno-error=deprecated-declarations does not seem to work on some compilers,
# including at least g++-4.6.
AddToCCFLAGSIfSupported ( myenv , " -Wno-deprecated-declarations " )
2013-08-01 17:55:47 +02:00
# As of clang-3.4, this warning appears in v8, and gets escalated to an error.
AddToCCFLAGSIfSupported ( myenv , " -Wno-tautological-constant-out-of-range-compare " )
2013-09-18 22:43:19 +02:00
# New in clang-3.4, trips up things mostly in third_party, but in a few places in the
# primary mongo sources as well.
AddToCCFLAGSIfSupported ( myenv , " -Wno-unused-const-variable " )
2014-07-16 20:48:12 +02:00
# Prevents warning about unused but set variables found in boost version 1.49
# in boost/date_time/format_date_parser.hpp which does not work for compilers
# GCC >= 4.6. Error explained in https://svn.boost.org/trac/boost/ticket/6136 .
AddToCCFLAGSIfSupported ( myenv , " -Wno-unused-but-set-variable " )
2014-12-03 22:18:38 +01:00
# This has been suppressed in gcc 4.8, due to false positives, but not in clang. So
# we explicitly disable it here.
AddToCCFLAGSIfSupported ( myenv , " -Wno-missing-braces " )
2014-06-12 22:49:57 +02:00
# Check if we need to disable null-conversion warnings
2015-03-09 20:12:13 +01:00
if myenv . ToolchainIs ( ' clang ' ) :
2014-06-12 22:49:57 +02:00
def CheckNullConversion ( context ) :
test_body = """
#include <boost/shared_ptr.hpp>
struct TestType { int value ; bool boolValue ; } ;
bool foo ( ) {
boost : : shared_ptr < TestType > sp ( new TestType ) ;
return NULL != sp ;
}
"""
context . Message ( ' Checking if implicit boost::shared_ptr null conversion is supported... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckNullConversion ' : CheckNullConversion ,
} )
if conf . CheckNullConversion ( ) == False :
env . Append ( CCFLAGS = " -Wno-null-conversion " )
conf . Finish ( )
2013-03-05 00:28:53 +01:00
# This needs to happen before we check for libc++, since it affects whether libc++ is available.
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' osx ' ) and has_option ( ' osx-version-min ' ) :
2013-03-05 00:28:53 +01:00
min_version = get_option ( ' osx-version-min ' )
2013-10-18 17:30:11 +02:00
min_version_flag = ' -mmacosx-version-min= %s ' % ( min_version )
if not AddToCCFLAGSIfSupported ( myenv , min_version_flag ) :
2013-03-05 00:28:53 +01:00
print ( " Can ' t set minimum OS X version with this compiler " )
Exit ( 1 )
2013-10-18 17:30:11 +02:00
myenv . AppendUnique ( LINKFLAGS = [ min_version_flag ] )
2013-03-05 00:28:53 +01:00
2013-12-22 16:30:25 +01:00
usingLibStdCxx = False
2013-03-01 21:50:58 +01:00
if has_option ( ' libc++ ' ) :
2015-03-09 20:12:13 +01:00
if not myenv . ToolchainIs ( ' clang ' ) :
2013-03-01 21:50:58 +01:00
print ( ' libc++ is currently only supported for clang ' )
Exit ( 1 )
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' osx ' ) and has_option ( ' osx-version-min ' ) and versiontuple ( min_version ) < versiontuple ( ' 10.7 ' ) :
2014-02-18 13:21:13 +01:00
print ( " Warning: You passed option ' libc++ ' . You probably want to also pass ' osx-version-min=10.7 ' or higher for libc++ support. " )
2013-03-01 21:50:58 +01:00
if AddToCXXFLAGSIfSupported ( myenv , ' -stdlib=libc++ ' ) :
myenv . Append ( LINKFLAGS = [ ' -stdlib=libc++ ' ] )
else :
print ( ' libc++ requested, but compiler does not support -stdlib=libc++ ' )
Exit ( 1 )
2013-12-22 16:30:25 +01:00
else :
def CheckLibStdCxx ( context ) :
test_body = """
#include <vector>
#if !defined(__GLIBCXX__)
#error
#endif
"""
context . Message ( ' Checking if we are using libstdc++... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckLibStdCxx ' : CheckLibStdCxx ,
} )
usingLibStdCxx = conf . CheckLibStdCxx ( )
conf . Finish ( )
2013-03-01 21:50:58 +01:00
2015-03-09 20:12:13 +01:00
if not myenv . ToolchainIs ( ' msvc ' ) :
2015-01-03 16:55:42 +01:00
if not AddToCXXFLAGSIfSupported ( myenv , ' -std=c++11 ' ) :
print ( ' Compiler does not honor -std=c++11 ' )
Exit ( 1 )
if not AddToCFLAGSIfSupported ( myenv , ' -std=c99 ' ) :
print ( " C++11 mode selected for C++ files, but can ' t enable C99 for C files " )
Exit ( 1 )
2013-12-22 16:30:25 +01:00
2015-01-03 16:55:42 +01:00
if using_system_version_of_cxx_libraries ( ) :
print ( ' WARNING: System versions of C++ libraries must be compiled with C++11 support ' )
2013-06-08 21:53:06 +02:00
2015-01-03 16:55:42 +01:00
# We appear to have C++11, or at least a flag to enable it. Check that the declared C++
# language level is not less than C++11, and that we can at least compile an 'auto'
# expression. We don't check the __cplusplus macro when using MSVC because as of our
2015-04-07 17:28:33 +02:00
# current required MS compiler version (MSVS 2013 Update 4), they don't set it. If
2015-01-03 16:55:42 +01:00
# MSFT ever decides (in MSVS 2015?) to define __cplusplus >= 201103L, remove the exception
# here for _MSC_VER
def CheckCxx11 ( context ) :
test_body = """
#ifndef _MSC_VER
#if __cplusplus < 201103L
#error
#endif
#endif
auto not_an_empty_file = 0 ;
"""
context . Message ( ' Checking for C++11... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckCxx11 ' : CheckCxx11 ,
} )
if not conf . CheckCxx11 ( ) :
print ( ' C++11 support is required to build MongoDB ' )
Exit ( 1 )
2013-06-08 21:53:06 +02:00
2015-01-03 16:55:42 +01:00
conf . Finish ( )
# If we are using libstdc++, check to see if we are using a libstdc++ that is older than
# our GCC minimum of 4.8.2. This is primarly to help people using clang on OS X but
# forgetting to use --libc++ (or set the target OS X version high enough to get it as the
# default). We would, ideally, check the __GLIBCXX__ version, but for various reasons this
# is not workable. Instead, we switch on the fact that _GLIBCXX_PROFILE_UNORDERED wasn't
# introduced until libstdc++ 4.8.2. Yes, this is a terrible hack.
if usingLibStdCxx :
def CheckModernLibStdCxx ( context ) :
2013-06-08 21:53:06 +02:00
test_body = """
2015-01-03 16:55:42 +01:00
#define _GLIBCXX_PROFILE
#include <unordered_map>
#if !defined(_GLIBCXX_PROFILE_UNORDERED)
#error libstdc++ older than 4.8.2
2013-06-08 21:53:06 +02:00
#endif
2013-07-02 19:35:15 +02:00
"""
2013-06-08 21:53:06 +02:00
2015-01-03 16:55:42 +01:00
context . Message ( ' Checking for libstdc++ 4.8.2 or better... ' )
2013-06-08 21:53:06 +02:00
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckModernLibStdCxx ' : CheckModernLibStdCxx ,
} )
2014-04-12 20:51:24 +02:00
2015-01-03 16:55:42 +01:00
if not conf . CheckModernLibStdCxx ( ) :
print ( " When using libstdc++, MongoDB requires libstdc++ 4.8.2 or newer " )
Exit ( 1 )
2014-04-12 20:51:24 +02:00
2015-01-03 16:55:42 +01:00
conf . Finish ( )
2014-09-18 23:28:51 +02:00
2014-09-16 00:07:50 +02:00
if has_option ( " use-glibcxx-debug " ) :
# If we are using a modern libstdc++ and this is a debug build and we control all C++
# dependencies, then turn on the debugging features in libstdc++.
2015-01-03 16:55:42 +01:00
# TODO: Need a new check here.
2014-09-16 00:07:50 +02:00
if not debugBuild :
print ( " --use-glibcxx-debug requires --dbg=on " )
Exit ( 1 )
2015-01-03 16:55:42 +01:00
if not usingLibStdCxx :
2014-09-16 00:07:50 +02:00
print ( " --use-glibcxx-debug is only compatible with the GNU implementation of the "
2015-01-03 16:55:42 +01:00
" C++ standard libary " )
2014-09-16 00:07:50 +02:00
Exit ( 1 )
if using_system_version_of_cxx_libraries ( ) :
print ( " --use-glibcxx-debug not compatible with system versions of C++ libraries. " )
Exit ( 1 )
myenv . Append ( CPPDEFINES = [ " _GLIBCXX_DEBUG " ] ) ;
2013-06-08 21:53:06 +02:00
2015-04-03 21:32:54 +02:00
# Check if we have a modern Windows SDK
if env . TargetOSIs ( ' windows ' ) :
def CheckWindowsSDKVersion ( context ) :
test_body = """
#include <windows.h>
#if !defined(NTDDI_WINBLUE)
#error Need Windows SDK Version 8.1 or higher
#endif
"""
context . Message ( ' Checking Windows SDK is 8.1 or newer... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .c " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckWindowsSDKVersion ' : CheckWindowsSDKVersion ,
} )
if not conf . CheckWindowsSDKVersion ( ) :
print ( ' Windows SDK Version 8.1 or higher is required to build MongoDB ' )
Exit ( 1 )
conf . Finish ( )
2014-04-28 15:38:32 +02:00
# Check if we are on a POSIX system by testing if _POSIX_VERSION is defined.
def CheckPosixSystem ( context ) :
test_body = """
/ / POSIX requires the existence of unistd . h , so if we can ' t include unistd.h, we
/ / are definitely not a POSIX system .
#include <unistd.h>
#if !defined(_POSIX_VERSION)
#error not a POSIX system
#endif
"""
context . Message ( ' Checking if we are on a POSIX system... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .c " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckPosixSystem ' : CheckPosixSystem ,
} )
posix_system = conf . CheckPosixSystem ( )
2015-03-26 23:00:00 +01:00
2014-04-28 15:38:32 +02:00
conf . Finish ( )
2014-06-03 22:52:03 +02:00
# Check if we are on a system that support the POSIX clock_gettime function
# and the "monotonic" clock.
posix_monotonic_clock = False
if posix_system :
def CheckPosixMonotonicClock ( context ) :
test_body = """
#include <unistd.h>
#if !(defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0)
#error POSIX clock_gettime not supported
#elif !(defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0)
#error POSIX monotonic clock not supported
#endif
"""
context . Message ( ' Checking if the POSIX monotonic clock is supported... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , " .c " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckPosixMonotonicClock ' : CheckPosixMonotonicClock ,
} )
posix_monotonic_clock = conf . CheckPosixMonotonicClock ( )
2015-03-26 23:00:00 +01:00
# On 32-bit systems, we need to define this in order to get access to
# the 64-bit versions of fseek, etc.
if not conf . CheckTypeSize ( ' off_t ' , includes = " #include <sys/types.h> " , expect = 8 ) :
myenv . Append ( CPPDEFINES = [ " _FILE_OFFSET_BITS=64 " ] )
2014-06-03 22:52:03 +02:00
conf . Finish ( )
2013-03-24 19:16:01 +01:00
if has_option ( ' sanitize ' ) :
2014-05-30 20:38:37 +02:00
2015-03-09 20:12:13 +01:00
if not myenv . ToolchainIs ( ' clang ' , ' gcc ' ) :
2013-03-24 19:16:01 +01:00
print ( ' sanitize is only supported with clang or gcc ' )
Exit ( 1 )
2014-05-30 20:38:37 +02:00
2015-03-06 16:52:15 +01:00
if get_option ( ' allocator ' ) == ' tcmalloc ' :
# There are multiply defined symbols between the sanitizer and
# our vendorized tcmalloc.
print ( " Cannot use --sanitize with tcmalloc " )
Exit ( 1 )
2014-05-30 20:38:37 +02:00
sanitizer_list = get_option ( ' sanitize ' ) . split ( ' , ' )
2014-10-28 21:25:02 +01:00
using_lsan = ' leak ' in sanitizer_list
using_asan = ' address ' in sanitizer_list or using_lsan
2015-03-06 16:52:15 +01:00
using_tsan = ' thread ' in sanitizer_list
2014-10-28 21:25:02 +01:00
2015-03-06 16:52:15 +01:00
# If the user asked for leak sanitizer, turn on the detect_leaks
2014-05-30 20:38:37 +02:00
# ASAN_OPTION. If they asked for address sanitizer as well, drop
# 'leak', because -fsanitize=leak means no address.
#
# --sanitize=leak: -fsanitize=leak, detect_leaks=1
# --sanitize=address,leak: -fsanitize=address, detect_leaks=1
# --sanitize=address: -fsanitize=address
#
2014-10-28 21:25:02 +01:00
if using_lsan :
if using_asan :
myenv [ ' ENV ' ] [ ' ASAN_OPTIONS ' ] = " detect_leaks=1 "
myenv [ ' ENV ' ] [ ' LSAN_OPTIONS ' ] = " suppressions= %s " % myenv . File ( " #etc/lsan.suppressions " ) . abspath
2014-05-30 20:38:37 +02:00
if ' address ' in sanitizer_list :
sanitizer_list . remove ( ' leak ' )
sanitizer_option = ' -fsanitize= ' + ' , ' . join ( sanitizer_list )
2013-03-24 19:16:01 +01:00
if AddToCCFLAGSIfSupported ( myenv , sanitizer_option ) :
myenv . Append ( LINKFLAGS = [ sanitizer_option ] )
2013-08-01 20:22:42 +02:00
myenv . Append ( CCFLAGS = [ ' -fno-omit-frame-pointer ' ] )
2013-03-24 19:16:01 +01:00
else :
2014-05-30 20:38:37 +02:00
print ( ' Failed to enable sanitizers with flag: ' + sanitizer_option )
2013-03-24 19:16:01 +01:00
Exit ( 1 )
2014-10-28 21:25:02 +01:00
blackfiles_map = {
" address " : myenv . File ( " #etc/asan.blacklist " ) ,
" leak " : myenv . File ( " #etc/asan.blacklist " ) ,
" thread " : myenv . File ( " #etc/tsan.blacklist " ) ,
" undefined " : myenv . File ( " #etc/ubsan.blacklist " ) ,
}
blackfiles = set ( [ v for ( k , v ) in blackfiles_map . iteritems ( ) if k in sanitizer_list ] )
blacklist_options = [ " -fsanitize-blacklist= %s " % blackfile for blackfile in blackfiles ]
for blacklist_option in blacklist_options :
if AddToCCFLAGSIfSupported ( myenv , blacklist_option ) :
myenv . Append ( LINKFLAGS = [ blacklist_option ] )
2014-05-30 20:38:37 +02:00
llvm_symbolizer = get_option ( ' llvm-symbolizer ' )
2014-10-28 21:25:02 +01:00
if os . path . isabs ( llvm_symbolizer ) :
if not myenv . File ( llvm_symbolizer ) . exists ( ) :
print ( " WARNING: Specified symbolizer ' %s ' not found " % llvm_symbolizer )
llvm_symbolizer = None
else :
2014-05-30 20:38:37 +02:00
llvm_symbolizer = myenv . WhereIs ( llvm_symbolizer )
2014-10-28 21:25:02 +01:00
2014-05-30 20:38:37 +02:00
if llvm_symbolizer :
2014-10-28 21:25:02 +01:00
myenv [ ' ENV ' ] [ ' ASAN_SYMBOLIZER_PATH ' ] = llvm_symbolizer
myenv [ ' ENV ' ] [ ' LSAN_SYMBOLIZER_PATH ' ] = llvm_symbolizer
2015-03-06 16:52:15 +01:00
tsan_options = " external_symbolizer_path= \" %s \" " % llvm_symbolizer
2014-10-28 21:25:02 +01:00
elif using_lsan :
print ( " Using the leak sanitizer requires a valid symbolizer " )
Exit ( 1 )
2014-05-30 20:38:37 +02:00
2015-03-06 16:52:15 +01:00
if using_tsan :
tsan_options + = " suppressions= \" %s \" " % myenv . File ( " #etc/tsan.suppressions " ) . abspath
myenv [ ' ENV ' ] [ ' TSAN_OPTIONS ' ] = tsan_options
2015-03-09 20:12:13 +01:00
if myenv . ToolchainIs ( ' msvc ' ) and optBuild :
2014-11-04 20:20:38 +01:00
# http://blogs.msdn.com/b/vcblog/archive/2013/09/11/introducing-gw-compiler-switch.aspx
#
myenv . Append ( CCFLAGS = [ " /Gw " , " /Gy " ] )
myenv . Append ( LINKFLAGS = [ " /OPT:REF " ] )
2014-05-20 23:03:35 +02:00
2014-11-04 20:20:38 +01:00
# http://blogs.msdn.com/b/vcblog/archive/2014/03/25/linker-enhancements-in-visual-studio-2013-update-2-ctp2.aspx
#
myenv . Append ( CCFLAGS = [ " /Zc:inline " ] )
2014-05-20 23:03:35 +02:00
2013-03-04 23:06:17 +01:00
# Apply any link time optimization settings as selected by the 'lto' option.
if has_option ( ' lto ' ) :
2015-03-09 20:12:13 +01:00
if myenv . ToolchainIs ( ' msvc ' ) :
2013-03-04 23:06:17 +01:00
# Note that this is actually more aggressive than LTO, it is whole program
# optimization due to /GL. However, this is historically what we have done for
# windows, so we are keeping it.
#
# /GL implies /LTCG, so no need to say it in CCFLAGS, but we do need /LTCG on the
# link flags.
myenv . Append ( CCFLAGS = [ ' /GL ' ] )
myenv . Append ( LINKFLAGS = [ ' /LTCG ' ] )
myenv . Append ( ARFLAGS = [ ' /LTCG ' ] )
2015-03-09 20:12:13 +01:00
elif myenv . ToolchainIs ( ' gcc ' , ' clang ' ) :
2013-03-04 23:06:17 +01:00
# For GCC and clang, the flag is -flto, and we need to pass it both on the compile
# and link lines.
if AddToCCFLAGSIfSupported ( myenv , ' -flto ' ) :
myenv . Append ( LINKFLAGS = [ ' -flto ' ] )
2014-12-12 21:01:07 +01:00
def LinkHelloWorld ( context , adornment = None ) :
test_body = """
#include <iostream>
int main ( ) {
std : : cout << " Hello, World! " << std : : endl ;
return 0 ;
}
"""
message = " Trying to link with LTO "
if adornment :
message = message + " " + adornment
message = message + " ... "
context . Message ( message )
ret = context . TryLink ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' LinkHelloWorld ' : LinkHelloWorld ,
} )
# Some systems (clang, on a system with the BFD linker by default) may need to
# explicitly request the gold linker for LTO to work. If we can't LTO link a
# simple program, see if -fuse=ld=gold helps.
if not conf . LinkHelloWorld ( ) :
conf . env . Append ( LINKFLAGS = [ " -fuse-ld=gold " ] )
if not conf . LinkHelloWorld ( " (with -fuse-ld=gold) " ) :
print ( " Error: Couldn ' t link with LTO " )
Exit ( 1 )
myenv = conf . Finish ( )
2013-03-04 23:06:17 +01:00
else :
print ( " Link time optimization requested, " +
" but selected compiler does not honor -flto " )
Exit ( 1 )
else :
printf ( " Don ' t know how to enable --lto on current toolchain " )
Exit ( 1 )
2015-03-30 18:14:42 +02:00
# We set this to work around https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
if not myenv . ToolchainIs ( ' msvc ' ) :
2013-03-01 21:45:15 +01:00
AddToCCFLAGSIfSupported ( myenv , " -fno-builtin-memcmp " )
2013-10-23 17:41:08 +02:00
# When using msvc, check for support for __declspec(thread), unless we have been asked
# explicitly not to use it. For other compilers, see if __thread works.
2015-03-09 20:12:13 +01:00
if myenv . ToolchainIs ( ' msvc ' ) :
2013-10-23 17:48:09 +02:00
haveDeclSpecThread = False
2014-02-07 20:36:30 +01:00
def CheckDeclspecThread ( context ) :
test_body = """
__declspec ( thread ) int tsp_int ;
int main ( int argc , char * argv [ ] ) {
tsp_int = argc ;
return 0 ;
}
"""
context . Message ( ' Checking for __declspec(thread)... ' )
ret = context . TryLink ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckDeclspecThread ' : CheckDeclspecThread ,
} )
haveDeclSpecThread = conf . CheckDeclspecThread ( )
conf . Finish ( )
2013-10-23 17:41:08 +02:00
if haveDeclSpecThread :
2015-03-26 23:00:00 +01:00
myenv . SetConfigHeaderDefine ( " MONGO_CONFIG_HAVE___DECLSPEC_THREAD " )
2013-10-23 17:41:08 +02:00
else :
def CheckUUThread ( context ) :
test_body = """
__thread int tsp_int ;
int main ( int argc , char * argv [ ] ) {
tsp_int = argc ;
return 0 ;
}
"""
context . Message ( ' Checking for __thread... ' )
ret = context . TryLink ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf = Configure ( myenv , help = False , custom_tests = {
' CheckUUThread ' : CheckUUThread ,
} )
haveUUThread = conf . CheckUUThread ( )
conf . Finish ( )
if haveUUThread :
2015-03-26 23:00:00 +01:00
myenv . SetConfigHeaderDefine ( " MONGO_CONFIG_HAVE___THREAD " )
2013-10-23 17:41:08 +02:00
2014-09-22 20:05:18 +02:00
# not all C++11-enabled gcc versions have type properties
def CheckCXX11IsTriviallyCopyable ( context ) :
test_body = """
#include <type_traits>
int main ( int argc , char * * argv ) {
class Trivial {
int trivial1 ;
double trivial2 ;
struct {
float trivial3 ;
short trivial4 ;
} trivial_member ;
} ;
class NotTrivial {
int x , y ;
NotTrivial ( const NotTrivial & o ) : x ( o . y ) , y ( o . x ) { }
} ;
static_assert ( std : : is_trivially_copyable < Trivial > : : value ,
" I should be trivially copyable " ) ;
static_assert ( ! std : : is_trivially_copyable < NotTrivial > : : value ,
" I should not be trivially copyable " ) ;
return 0 ;
}
"""
context . Message ( ' Checking for C++11 is_trivially_copyable support... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , ' .cpp ' )
context . Result ( ret )
return ret
2015-01-03 16:55:42 +01:00
# Some GCC's don't have std::is_trivially_copyable
2014-05-16 20:51:48 +02:00
conf = Configure ( myenv , help = False , custom_tests = {
2014-09-22 20:05:18 +02:00
' CheckCXX11IsTriviallyCopyable ' : CheckCXX11IsTriviallyCopyable ,
2014-05-16 20:51:48 +02:00
} )
2014-05-14 16:41:00 +02:00
2015-01-03 16:55:42 +01:00
if conf . CheckCXX11IsTriviallyCopyable ( ) :
2015-03-26 23:00:00 +01:00
conf . env . SetConfigHeaderDefine ( " MONGO_CONFIG_HAVE_STD_IS_TRIVIALLY_COPYABLE " )
2014-09-22 20:05:18 +02:00
2014-05-16 20:51:48 +02:00
myenv = conf . Finish ( )
2013-12-13 16:52:07 +01:00
2015-03-19 16:06:58 +01:00
def CheckCXX14MakeUnique ( context ) :
test_body = """
#include <memory>
int main ( int argc , char * * argv ) {
auto foo = std : : make_unique < int > ( 5 ) ;
return 0 ;
}
"""
context . Message ( ' Checking for C++14 std::make_unique support... ' )
ret = context . TryCompile ( textwrap . dedent ( test_body ) , ' .cpp ' )
context . Result ( ret )
return ret
# Check for std::make_unique support without using the __cplusplus macro
conf = Configure ( myenv , help = False , custom_tests = {
' CheckCXX14MakeUnique ' : CheckCXX14MakeUnique ,
} )
if conf . CheckCXX14MakeUnique ( ) :
2015-03-26 23:00:00 +01:00
conf . env . SetConfigHeaderDefine ( ' MONGO_CONFIG_HAVE_STD_MAKE_UNIQUE ' )
2015-03-19 16:06:58 +01:00
myenv = conf . Finish ( )
2015-02-10 23:54:43 +01:00
def CheckBoostMinVersion ( context ) :
compile_test_body = textwrap . dedent ( """
#include <boost/version.hpp>
#if BOOST_VERSION < 104900
#error
#endif
""" )
context . Message ( " Checking if system boost version is 1.49 or newer... " )
result = context . TryCompile ( compile_test_body , " .cpp " )
context . Result ( result )
return result
conf = Configure ( myenv , custom_tests = {
' CheckBoostMinVersion ' : CheckBoostMinVersion ,
} )
2013-09-10 17:56:57 +02:00
libdeps . setup_conftests ( conf )
2009-05-28 19:16:03 +02:00
2013-06-03 20:33:18 +02:00
if use_system_version_of_library ( " pcre " ) :
2013-09-10 17:56:57 +02:00
conf . FindSysLibDep ( " pcre " , [ " pcre " ] )
conf . FindSysLibDep ( " pcrecpp " , [ " pcrecpp " ] )
2015-03-26 23:00:00 +01:00
else :
env . Prepend ( CPPDEFINES = [ ' PCRE_STATIC ' ] )
2013-06-03 20:33:18 +02:00
if use_system_version_of_library ( " snappy " ) :
2013-09-10 17:56:57 +02:00
conf . FindSysLibDep ( " snappy " , [ " snappy " ] )
2013-06-03 20:33:18 +02:00
2014-11-03 23:15:00 +01:00
if use_system_version_of_library ( " zlib " ) :
conf . FindSysLibDep ( " zlib " , [ " zlib " if windows else " z " ] )
2013-06-03 20:33:18 +02:00
if use_system_version_of_library ( " stemmer " ) :
2013-09-10 17:56:57 +02:00
conf . FindSysLibDep ( " stemmer " , [ " stemmer " ] )
2013-06-03 20:33:18 +02:00
2013-11-09 21:38:08 +01:00
if use_system_version_of_library ( " yaml " ) :
2014-06-20 10:40:08 +02:00
conf . FindSysLibDep ( " yaml " , [ " yaml-cpp " ] )
2013-11-09 21:38:08 +01:00
2014-11-04 21:47:12 +01:00
if wiredtiger and use_system_version_of_library ( " wiredtiger " ) :
if not conf . CheckCXXHeader ( " wiredtiger.h " ) :
print ( " Cannot find wiredtiger headers " )
Exit ( 1 )
conf . FindSysLibDep ( " wiredtiger " , [ " wiredtiger " ] )
2012-03-24 15:26:41 +01:00
if use_system_version_of_library ( " boost " ) :
2012-03-02 17:13:09 +01:00
if not conf . CheckCXXHeader ( " boost/filesystem/operations.hpp " ) :
print ( " can ' t find boost headers " )
2012-03-23 22:18:40 +01:00
Exit ( 1 )
2015-02-10 23:54:43 +01:00
if not conf . CheckBoostMinVersion ( ) :
print ( " system ' s version of boost is too old. version 1.49 or better required " )
Exit ( 1 )
2012-03-02 17:13:09 +01:00
2013-09-13 20:39:53 +02:00
conf . env . Append ( CPPDEFINES = [ ( " BOOST_THREAD_VERSION " , " 2 " ) ] )
2014-01-17 22:55:29 +01:00
2015-01-20 21:30:47 +01:00
# Note that on Windows with using-system-boost builds, the following
2014-01-17 22:55:29 +01:00
# FindSysLibDep calls do nothing useful (but nothing problematic either)
2015-01-20 21:30:47 +01:00
#
# NOTE: Pass --system-boost-lib-search-suffixes= to suppress these checks, which you
# might want to do if using autolib linking on Windows, for example.
if boostSuffixList :
for b in boostLibs :
boostlib = " boost_ " + b
conf . FindSysLibDep (
boostlib ,
[ boostlib + suffix for suffix in boostSuffixList ] ,
language = ' C++ ' )
2009-07-07 16:44:43 +02:00
2014-04-28 15:38:32 +02:00
if posix_system :
2015-03-26 23:00:00 +01:00
conf . env . SetConfigHeaderDefine ( " MONGO_CONFIG_HAVE_HEADER_UNISTD_H " )
2012-04-20 23:45:13 +02:00
conf . CheckLib ( ' rt ' )
2014-04-02 00:26:18 +02:00
conf . CheckLib ( ' dl ' )
2014-06-03 22:52:03 +02:00
if posix_monotonic_clock :
2015-03-26 23:00:00 +01:00
conf . env . SetConfigHeaderDefine ( " MONGO_CONFIG_HAVE_POSIX_MONOTONIC_CLOCK " )
2014-06-03 22:52:03 +02:00
2012-05-24 19:47:48 +02:00
if ( conf . CheckCXXHeader ( " execinfo.h " ) and
2012-04-05 21:44:23 +02:00
conf . CheckDeclaration ( ' backtrace ' , includes = ' #include <execinfo.h> ' ) and
2013-06-20 17:53:23 +02:00
conf . CheckDeclaration ( ' backtrace_symbols ' , includes = ' #include <execinfo.h> ' ) and
conf . CheckDeclaration ( ' backtrace_symbols_fd ' , includes = ' #include <execinfo.h> ' ) ) :
2012-04-05 21:44:23 +02:00
2015-03-26 23:00:00 +01:00
conf . env . SetConfigHeaderDefine ( " MONGO_CONFIG_HAVE_EXECINFO_BACKTRACE " )
2009-08-12 20:54:53 +02:00
2013-03-01 21:45:15 +01:00
conf . env [ " _HAVEPCAP " ] = conf . CheckLib ( [ " pcap " , " wpcap " ] , autoadd = False )
2009-03-12 14:30:14 +01:00
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' solaris ' ) :
2009-08-28 17:50:20 +02:00
conf . CheckLib ( " nsl " )
2012-10-25 23:19:17 +02:00
if usev8 and use_system_version_of_library ( " v8 " ) :
2009-10-13 22:12:43 +02:00
if debugBuild :
2012-03-23 22:18:40 +01:00
v8_lib_choices = [ " v8_g " , " v8 " ]
2009-10-13 22:12:43 +02:00
else :
2012-03-23 22:18:40 +01:00
v8_lib_choices = [ " v8 " ]
2013-09-10 17:56:57 +02:00
conf . FindSysLibDep ( " v8 " , v8_lib_choices )
2009-10-10 07:30:00 +02:00
2013-03-01 21:45:15 +01:00
conf . env [ ' MONGO_BUILD_SASL_CLIENT ' ] = bool ( has_option ( " use-sasl-client " ) )
if conf . env [ ' MONGO_BUILD_SASL_CLIENT ' ] and not conf . CheckLibWithHeader (
2014-01-22 17:22:59 +01:00
" sasl2 " ,
[ " stddef.h " , " sasl/sasl.h " ] ,
" C " ,
" sasl_version_info(0, 0, 0, 0, 0, 0); " ,
autoadd = False ) :
2012-10-29 18:12:36 +01:00
Exit ( 1 )
2012-05-24 19:47:48 +02:00
# requires ports devel/libexecinfo to be installed
2015-03-30 18:14:42 +02:00
if env . TargetOSIs ( ' freebsd ' , ' openbsd ' ) :
2012-05-24 19:47:48 +02:00
if not conf . CheckLib ( " execinfo " ) :
2014-08-19 21:07:11 +02:00
print ( " Cannot find libexecinfo, please install devel/libexecinfo. " )
2012-03-23 22:18:40 +01:00
Exit ( 1 )
2010-01-29 20:46:05 +01:00
2010-08-10 17:07:41 +02:00
# 'tcmalloc' needs to be the last library linked. Please, add new libraries before this
# point.
2012-08-10 19:32:42 +02:00
if get_option ( ' allocator ' ) == ' tcmalloc ' :
if use_system_version_of_library ( ' tcmalloc ' ) :
2013-09-10 17:56:57 +02:00
conf . FindSysLibDep ( " tcmalloc " , [ " tcmalloc " ] )
2012-08-10 19:32:42 +02:00
elif get_option ( ' allocator ' ) == ' system ' :
pass
else :
print " Invalid --allocator parameter: \" %s \" " % get_option ( ' allocator ' )
Exit ( 1 )
2012-03-23 22:18:40 +01:00
2015-04-22 22:46:05 +02:00
def CheckStdAtomic ( context , type ) :
test_body = """
#include <atomic>
int main ( ) { {
std : : atomic < { 0 } > x ;
x . store ( 0 ) ;
{ 0 } y = 1 ;
x . fetch_add ( y ) ;
x . fetch_sub ( y ) ;
x . exchange ( y ) ;
x . compare_exchange_strong ( y , x ) ;
return x . load ( ) ;
} }
""" .format(type)
context . Message ( " Checking whether toolchain supports std::atomic< {0} > " . format ( type ) )
ret = context . TryLink ( textwrap . dedent ( test_body ) , " .cpp " )
context . Result ( ret )
return ret
conf . AddTest ( " CheckStdAtomic " , CheckStdAtomic )
def check_all_atomics ( ) :
for t in ( ' int64_t ' , ' uint64_t ' , ' int32_t ' , ' uint32_t ' ) :
if not conf . CheckStdAtomic ( t ) :
return False
return True
if not check_all_atomics ( ) :
if not conf . env . ToolchainIs ( ' msvc ' ) :
conf . env . AppendUnique ( LIBS = [ ' atomic ' ] )
if not check_all_atomics ( ) :
print " The toolchain does not support std::atomic, cannot continue "
Exit ( 1 )
else :
print " The toolchain does not support std::atomic, cannot continue "
Exit ( 1 )
2012-10-18 22:07:39 +02:00
# ask each module to configure itself and the build environment.
2013-03-01 21:45:15 +01:00
moduleconfig . configure_modules ( mongo_modules , conf )
2012-07-05 17:54:01 +02:00
2009-02-01 23:39:07 +01:00
return conf . Finish ( )
env = doConfigure ( env )
2009-01-27 04:19:15 +01:00
2014-12-24 18:12:22 +01:00
# Load the compilation_db tool. We want to do this after configure so we don't end up with
# compilation database entries for the configure tests, which is weird.
env . Tool ( " compilation_db " )
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
def checkErrorCodes ( ) :
import buildscripts . errorcodes as x
if x . checkErrorCodes ( ) == False :
print ( " next id to use: " + str ( x . getNextCode ( ) ) )
Exit ( - 1 )
2009-03-13 15:12:52 +01:00
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
checkErrorCodes ( )
2009-08-26 22:48:10 +02:00
2012-10-15 07:51:29 +02:00
# --- lint ----
def doLint ( env , target , source ) :
2012-10-15 08:37:46 +02:00
import buildscripts . lint
2012-10-16 03:49:27 +02:00
if not buildscripts . lint . run_lint ( [ " src/mongo/ " ] ) :
2012-10-15 07:51:29 +02:00
raise Exception ( " lint errors " )
env . Alias ( " lint " , [ ] , [ doLint ] )
env . AlwaysBuild ( " lint " )
2010-12-29 08:04:19 +01:00
2009-01-12 21:27:55 +01:00
# ---- INSTALL -------
2009-08-14 16:55:52 +02:00
def getSystemInstallName ( ) :
2014-06-19 17:49:38 +02:00
dist_arch = GetOption ( " distarch " )
2015-03-09 20:12:13 +01:00
arch_name = env [ ' TARGET_ARCH ' ] if not dist_arch else dist_arch
2015-03-30 18:14:42 +02:00
n = env . GetTargetOSName ( ) + " - " + arch_name
2010-12-21 07:23:31 +01:00
if has_option ( " nostrip " ) :
2010-07-28 06:55:58 +02:00
n + = " -debugsymbols "
2009-08-14 16:55:52 +02:00
2012-10-18 22:07:39 +02:00
if len ( mongo_modules ) :
n + = " - " + " - " . join ( m . name for m in mongo_modules )
2012-09-19 01:10:54 +02:00
dn = GetOption ( " distmod " )
2010-01-29 16:43:02 +01:00
if dn and len ( dn ) > 0 :
n = n + " - " + dn
2009-11-20 19:47:22 +01:00
return n
2009-08-14 16:55:52 +02:00
2015-02-26 21:08:41 +01:00
mongoCodeVersion = env [ ' MONGO_CODE_VERSION ' ]
2012-03-07 18:09:42 +01:00
if mongoCodeVersion == None :
2010-05-28 17:49:07 +02:00
Exit ( - 1 )
2012-03-07 18:09:42 +01:00
if has_option ( ' distname ' ) :
distName = GetOption ( " distname " )
elif mongoCodeVersion [ - 1 ] not in ( " + " , " - " ) :
distName = mongoCodeVersion
else :
distName = utils . getGitBranchString ( " " , " - " ) + datetime . date . today ( ) . strftime ( " % Y- % m- %d " )
2009-12-05 17:54:36 +01:00
2012-03-07 18:09:42 +01:00
env [ ' SERVER_DIST_BASENAME ' ] = ' mongodb- %s - %s ' % ( getSystemInstallName ( ) , distName )
2009-05-29 04:35:26 +02:00
2012-10-18 22:07:39 +02:00
module_sconscripts = moduleconfig . get_module_sconscripts ( mongo_modules )
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
# The following symbols are exported for use in subordinate SConscript files.
# Ideally, the SConscript files would be purely declarative. They would only
# import build environment objects, and would contain few or no conditional
# statements or branches.
#
# Currently, however, the SConscript files do need some predicates for
# conditional decision making that hasn't been moved up to this SConstruct file,
# and they are exported here, as well.
Export ( " env " )
2013-10-21 21:45:24 +02:00
Export ( " get_option " )
2012-03-24 15:26:41 +01:00
Export ( " has_option use_system_version_of_library " )
2015-02-05 21:46:06 +01:00
Export ( " serverJs " )
2013-06-24 18:58:41 +02:00
Export ( " usev8 " )
2014-04-23 23:31:32 +02:00
Export ( " v8version v8suffix " )
2014-06-06 14:03:24 +02:00
Export ( " boostSuffix " )
2012-10-18 22:07:39 +02:00
Export ( ' module_sconscripts ' )
SERVER-10726 Orthogonalize debugging and optimization options
Introduce new flags --dbg and --opt which permit independent control over optimization and
debugging. The old --d, --dd, and --release flags were not independent, and had surprising
interactions, particularly on Windows.
The old flags are still supported in a legacy mode for --d and --dd builds, cannot be mixed
with the new.
For builds specifying none of --dbg, --opt, --d, or --dd, there should be no behavior change,
except on Windows. On that platform, a no-flags-specified build will now default to
optimization enabled, whereas before it did not.
2013-09-13 23:36:54 +02:00
Export ( " debugBuild optBuild " )
2014-11-04 21:47:12 +01:00
Export ( " wiredtiger " )
SCons updates to support variant directories.
This patch is a reorganization of our build files, which brings them slightly
closer in line with standard SCons organization.
In particular, the SConstruct file sets up the various "build environment"
objects, by examining the local system and command line parameters. Then, it
delegates to some SConscript files, which describe build rules, like how to
compile "mongod" from source.
Typically, you would create several SConscript files for a project this large,
after breaking the project into logical sub projects, such as "platform
abstraction", "data manager", "query optimizer", etc. That will be future work.
For now, we only separate out the special rules for executing smoke tests into
SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript.
"tools" are placed in site_scons/site_tools.
This patch also includes better support for building and tracking dependencies
among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor
restructuring.
This patch introduces a "warning" message from SCons about framework.o having
two rules that generate it. It is harmless, for now, and will be removed in
future work.
Future work also includes eliminating use of the SCons "Glob" utility, and
restructuring the source code into sensible components.
2012-01-04 20:30:29 +01:00
2014-04-23 18:08:55 +02:00
def injectMongoIncludePaths ( thisEnv ) :
thisEnv . AppendUnique ( CPPPATH = [ ' $BUILD_DIR ' ] )
env . AddMethod ( injectMongoIncludePaths , ' InjectMongoIncludePaths ' )
2014-12-24 18:12:22 +01:00
env . Alias ( " compiledb " , env . CompilationDatabase ( ' compile_commands.json ' ) )
2012-10-18 22:07:39 +02:00
env . SConscript ( ' src/SConscript ' , variant_dir = ' $BUILD_DIR ' , duplicate = False )
2015-02-26 21:08:41 +01:00
env . SConscript ( ' SConscript.smoke ' )
2012-01-21 08:03:12 +01:00
2015-04-16 22:22:56 +02:00
env . Alias ( ' all ' , [ ' core ' , ' tools ' , ' dbtest ' , ' unittests ' ] )