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.
2012-03-07 18:09:42 +01:00
import buildscripts
import datetime
2009-11-19 18:40:23 +01:00
import imp
2012-03-07 18:09:42 +01:00
import os
2009-02-01 23:39:07 +01:00
import re
2009-04-22 17:12:13 +02:00
import shutil
2012-03-07 18:09:42 +01:00
import stat
import sys
import types
2009-04-22 23:06:31 +02:00
import urllib
import urllib2
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
2012-04-18 23:59:43 +02:00
EnsureSConsVersion ( 1 , 1 , 0 )
2012-04-19 16:01:54 +02:00
if " uname " in dir ( os ) :
scons_data_dir = " .scons/ %s / %s " % ( os . uname ( ) [ 0 ] , os . getenv ( " HOST " , " nohost " ) )
else :
scons_data_dir = " .scons/ %s / " % os . getenv ( " HOST " , " nohost " )
2012-04-18 23:59:43 +02:00
SConsignFile ( scons_data_dir + " /sconsign " )
2012-03-07 18:09:42 +01:00
DEFAULT_INSTALL_DIR = " /usr/local "
2012-01-23 18:38:39 +01:00
2009-01-06 00:19:56 +01:00
2010-12-21 17:54:46 +01:00
def findSettingsSetup ( ) :
sys . path . append ( " . " )
sys . path . append ( " .. " )
sys . path . append ( " ../../ " )
2011-11-15 00:05:08 +01:00
2009-01-14 16:58:32 +01:00
# --- options ----
2010-11-30 04:34:42 +01:00
2010-11-30 04:48:31 +01:00
options = { }
2011-08-20 00:09:18 +02:00
options_topass = { }
2012-03-07 18:09:42 +01:00
def add_option ( name , help , nargs , contributesToVariantDir ,
dest = None , default = None , type = " string " , choices = None ) :
2010-11-30 04:34:42 +01:00
if dest is None :
dest = name
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 ,
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 )
2011-08-20 00:09:18 +02: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
2011-08-20 00:09:18 +02:00
def has_option ( name ) :
x = _has_option ( name )
2011-12-25 04:48:28 +01:00
if name not in options_topass :
# if someone already set this, don't overwrite
options_topass [ name ] = x
2011-08-20 00:09:18 +02:00
return x
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
2010-11-30 04:48:31 +01:00
def get_variant_dir ( ) :
a = [ ]
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
2010-11-30 04:48:31 +01:00
if o [ " nargs " ] == 0 :
a . append ( name )
else :
2012-01-22 01:50:45 +01:00
x = get_option ( name )
2012-12-14 23:54:43 +01:00
x = re . sub ( " [:, \\ \\ /] " , " _ " , x )
2012-01-22 01:50:45 +01:00
a . append ( name + " _ " + x )
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
s = " #build/$ {PYSYSPLATFORM} / "
2010-11-30 04:48:31 +01:00
if len ( a ) > 0 :
a . sort ( )
s + = " / " . join ( a ) + " / "
2011-12-25 04:48:28 +01:00
else :
s + = " normal/ "
2010-11-30 04:48:31 +01:00
return s
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
2012-03-07 18:09:42 +01:00
add_option ( " prefix " , " installation prefix " , 1 , False , default = DEFAULT_INSTALL_DIR )
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 )
add_option ( " nostrip " , " do not strip installed binaries " , 0 , False )
add_option ( " sharedclient " , " build a libmongoclient.so/.dll " , 0 , False )
add_option ( " full " , " include client and headers when doing scons install " , 0 , False )
2010-12-01 15:52:37 +01:00
# linking options
add_option ( " release " , " release build " , 0 , True )
2012-12-23 08:37:03 +01:00
add_option ( " static " , " fully static build " , 0 , False )
add_option ( " static-libstdc++ " , " statically link libstdc++ " , 0 , False )
2010-12-01 15:52:37 +01:00
2010-11-30 04:34:42 +01:00
# base compile flags
add_option ( " 64 " , " whether to force 64 bit " , 0 , True , " force64 " )
add_option ( " 32 " , " whether to force 32 bit " , 0 , True , " force32 " )
add_option ( " cxx " , " compiler to use " , 1 , True )
2011-08-22 08:17:21 +02:00
add_option ( " cc " , " compiler to use for c " , 1 , True )
2013-02-07 21:28:52 +01:00
add_option ( " ld " , " linker to use " , 1 , True )
2010-11-30 04:34:42 +01:00
add_option ( " cpppath " , " Include path if you have headers in a nonstandard directory " , 1 , True )
add_option ( " libpath " , " Library path if you have libraries in a nonstandard directory " , 1 , True )
add_option ( " extrapath " , " comma separated list of add ' l paths (--extrapath /opt/foo/,/foo) static linking " , 1 , True )
add_option ( " extrapathdyn " , " comma separated list of add ' l paths (--extrapath /opt/foo/,/foo) dynamic linking " , 1 , True )
add_option ( " extralib " , " comma separated list of libraries (--extralib js_static,readline " , 1 , True )
add_option ( " boost-compiler " , " compiler used for boost (gcc41) " , 1 , True , " boostCompiler " )
add_option ( " boost-version " , " boost version for linking(1_38) " , 1 , True , " boostVersion " )
2011-10-27 20:15:17 +02:00
add_option ( " no-glibc-check " , " don ' t check for new versions of glibc " , 0 , False )
2010-11-30 04:34:42 +01:00
# experimental features
add_option ( " mm " , " use main memory instead of memory mapped files " , 0 , True )
add_option ( " asio " , " Use Asynchronous IO (NOT READY YET) " , 0 , True )
2011-07-14 00:37:26 +02:00
add_option ( " ssl " , " Enable SSL " , 0 , True )
2010-11-30 04:34:42 +01:00
# library choices
add_option ( " usesm " , " use spider monkey for javascript " , 0 , True )
add_option ( " usev8 " , " use v8 for javascript " , 0 , True )
# 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 )
2011-08-04 23:53:28 +02:00
add_option ( " win2008plus " , " use newer operating system API features " , 0 , False )
2010-11-30 04:34:42 +01:00
2012-01-16 21:42:07 +01:00
# dev options
2010-11-30 04:34:42 +01:00
add_option ( " d " , " debug build no optimization, etc... " , 0 , True , " debugBuild " )
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 ( " dd " , " debug build no optimization, additional debug logging, etc... " , 0 , True , " debugBuildAndLogging " )
2011-01-07 16:41:54 +01:00
add_option ( " durableDefaultOn " , " have durable default to on " , 0 , True )
2011-07-31 14:36:46 +02:00
add_option ( " durableDefaultOff " , " have durable default to off " , 0 , True )
2010-11-30 04:34:42 +01:00
add_option ( " pch " , " use precompiled headers to speed up the build (experimental) " , 0 , True , " usePCH " )
add_option ( " distcc " , " use distcc for distributing builds " , 0 , False )
2011-03-11 23:06:41 +01:00
add_option ( " clang " , " use clang++ rather than g++ (experimental) " , 0 , True )
2010-11-30 04:34:42 +01:00
# debugging/profiling help
2012-11-07 04:03:03 +01:00
if os . sys . platform . startswith ( " linux " ) and ( os . uname ( ) [ - 1 ] == ' x86_64 ' ) :
defaultAllocator = ' tcmalloc '
elif ( os . sys . platform == " darwin " ) and ( os . uname ( ) [ - 1 ] == ' x86_64 ' ) :
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 )
add_option ( " heapcheck " , " link to heap-checking malloc-lib and look for memory leaks during tests " , 0 , False )
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 )
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 )
2012-03-26 16:33:16 +02:00
add_option ( " use-system-sm " , " use system version of spidermonkey 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
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
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
2012-03-19 16:12:25 +01:00
add_option ( " mongod-concurrency-level " , " Concurrency level, \" global \" or \" db \" " , 1 , True ,
type = " choice " , choices = [ " global " , " db " ] )
2012-03-07 18:09:42 +01:00
add_option ( ' client-dist-basename ' , " Name of the client source archive. " , 1 , False ,
default = ' mongo-cxx-driver ' )
2011-12-05 23:00:02 +01:00
# don't run configure if user calls --help
if GetOption ( ' help ' ) :
Return ( )
2009-01-14 16:58:32 +01:00
# --- environment setup ---
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
variantDir = get_variant_dir ( )
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 " ] )
2009-04-23 22:51:51 +02:00
nix = False
linux = False
linux64 = False
darwin = False
windows = False
2009-05-22 09:58:03 +02:00
freebsd = False
2010-06-20 22:29:03 +02:00
openbsd = False
2009-06-01 22:09:16 +02:00
solaris = False
2012-01-31 16:07:42 +01:00
force32 = has_option ( " force32 " )
2010-11-30 04:34:42 +01:00
force64 = has_option ( " force64 " )
2012-01-31 16:07:42 +01:00
if not force64 and not force32 and os . getcwd ( ) . endswith ( " mongo-64 " ) :
2009-06-30 19:45:55 +02:00
force64 = True
print ( " *** assuming you want a 64-bit build b/c of directory *** " )
2009-07-24 20:27:35 +02:00
msarch = None
2012-01-31 16:07:42 +01:00
if force32 :
msarch = " x86 "
elif force64 :
2009-07-24 20:27:35 +02:00
msarch = " amd64 "
2010-11-30 04:34:42 +01:00
release = has_option ( " release " )
static = has_option ( " static " )
2009-04-23 22:51:51 +02:00
2010-11-30 04:34:42 +01:00
debugBuild = has_option ( " debugBuild " ) or has_option ( " debugBuildAndLogging " )
debugLogging = has_option ( " debugBuildAndLogging " )
noshell = has_option ( " noshell " )
2009-05-08 23:02:32 +02:00
2010-11-30 04:34:42 +01:00
usesm = has_option ( " usesm " )
usev8 = has_option ( " usev8 " )
2009-05-08 23:02:32 +02:00
2010-11-30 04:34:42 +01:00
asio = has_option ( " asio " )
2009-12-14 18:38:53 +01:00
2010-11-30 04:34:42 +01:00
usePCH = has_option ( " usePCH " )
2010-07-24 03:46:35 +02:00
2010-03-08 22:36:44 +01:00
justClientLib = ( COMMAND_LINE_TARGETS == [ ' mongoclient ' ] )
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 = Environment ( BUILD_DIR = variantDir ,
2012-03-07 18:09:42 +01:00
CLIENT_ARCHIVE = ' $ {CLIENT_DIST_BASENAME} $ {DIST_ARCHIVE_SUFFIX} ' ,
CLIENT_DIST_BASENAME = get_option ( ' client-dist-basename ' ) ,
CLIENT_LICENSE = ' #distsrc/client/LICENSE.txt ' ,
CLIENT_SCONSTRUCT = ' #distsrc/client/SConstruct ' ,
DIST_ARCHIVE_SUFFIX = ' .tgz ' ,
2012-03-30 20:05:09 +02:00
EXTRAPATH = get_option ( " extrapath " ) ,
2012-11-12 21:27:57 +01:00
MODULE_BANNERS = [ ] ,
2012-10-18 22:07:39 +02:00
MODULE_LIBDEPS_MONGOD = [ ] ,
MODULE_LIBDEPS_MONGOS = [ ] ,
MODULE_LIBDEPS_MONGOSHELL = [ ] ,
2012-10-26 19:25:03 +02:00
MODULETEST_ALIAS = ' moduletests ' ,
2012-07-10 17:12:35 +02:00
MODULETEST_LIST = ' #build/moduletests.txt ' ,
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
MSVS_ARCH = msarch ,
2012-03-07 18:09:42 +01:00
PYTHON = utils . find_python ( ) ,
SERVER_ARCHIVE = ' $ {SERVER_DIST_BASENAME} $ {DIST_ARCHIVE_SUFFIX} ' ,
2012-01-31 16:07:42 +01:00
TARGET_ARCH = msarch ,
2012-06-01 21:26:04 +02:00
tools = [ " default " , " gch " , " jsheader " , " mergelib " , " unittest " ] ,
UNITTEST_ALIAS = ' unittests ' ,
UNITTEST_LIST = ' #build/unittests.txt ' ,
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
PYSYSPLATFORM = os . sys . platform ,
2012-02-27 19:01:27 +01:00
PCRE_VERSION = ' 8.30 ' ,
2012-08-10 19:32:42 +02:00
CONFIGUREDIR = ' # ' + scons_data_dir + ' /sconf_temp ' ,
CONFIGURELOG = ' # ' + scons_data_dir + ' /config.log '
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
)
2012-07-17 00:48:37 +02:00
env [ ' _LIBDEPS ' ] = ' $_LIBDEPS_OBJS '
2012-04-03 17:17:18 +02:00
if has_option ( ' mute ' ) :
env . Append ( CCCOMSTR = " Compiling $TARGET " )
env . Append ( CXXCOMSTR = env [ " CCCOMSTR " ] )
env . Append ( LINKCOMSTR = " Linking $TARGET " )
env . Append ( ARCOMSTR = " Generating library $TARGET " )
2012-03-19 16:12:25 +01:00
if has_option ( ' mongod-concurrency-level ' ) :
env . Append ( CPPDEFINES = [ ' MONGOD_CONCURRENCY_LEVEL=MONGOD_CONCURRENCY_LEVEL_ %s ' % get_option ( ' mongod-concurrency-level ' ) . upper ( ) ] )
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 )
if env [ ' PYSYSPLATFORM ' ] == ' linux3 ' :
env [ ' PYSYSPLATFORM ' ] = ' linux2 '
2012-06-11 22:28:11 +02:00
if ' freebsd ' in env [ ' PYSYSPLATFORM ' ] :
2012-05-16 15:15:29 +02:00
env [ ' PYSYSPLATFORM ' ] = ' 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
if os . sys . platform == ' win32 ' :
env [ ' OS_FAMILY ' ] = ' win '
else :
env [ ' OS_FAMILY ' ] = ' posix '
2010-11-30 04:34:42 +01:00
if has_option ( " cxx " ) :
env [ " CC " ] = get_option ( " cxx " )
env [ " CXX " ] = get_option ( " cxx " )
2011-03-11 23:06:41 +01:00
elif has_option ( " clang " ) :
env [ " CC " ] = ' clang '
env [ " CXX " ] = ' clang++ '
2011-08-22 08:17:21 +02:00
if has_option ( " cc " ) :
env [ " CC " ] = get_option ( " cc " )
2013-02-07 21:28:52 +01:00
if has_option ( " ld " ) :
env [ " LINK " ] = get_option ( " ld " )
2012-05-16 15:15:29 +02:00
if env [ ' PYSYSPLATFORM ' ] in ( ' linux2 ' , ' 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 '
env [ ' RELOBJ_LIBDEPS_START ' ] = ' --whole-archive '
env [ ' RELOBJ_LIBDEPS_END ' ] = ' --no-whole-archive '
env [ ' RELOBJ_LIBDEPS_ITEM ' ] = ' '
elif env [ ' PYSYSPLATFORM ' ] == ' darwin ' :
2012-01-19 19:26:30 +01:00
env [ ' RELOBJFLAGS ' ] = [ ' -arch ' , ' $PROCESSOR_ARCHITECTURE ' ]
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 ' ] = ' '
2012-01-18 04:23:17 +01:00
env [ ' RELOBJ_LIBDEPS_START ' ] = ' -all_load '
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 [ ' RELOBJ_LIBDEPS_END ' ] = ' '
2012-01-18 04:23:17 +01:00
env [ ' RELOBJ_LIBDEPS_ITEM ' ] = ' '
2012-01-18 23:10:11 +01:00
elif env [ ' PYSYSPLATFORM ' ] . startswith ( ' sunos ' ) :
if force64 :
env [ ' RELOBJFLAGS ' ] = [ ' -64 ' ]
env [ ' LINK_LIBGROUP_START ' ] = ' -z rescan '
2012-01-30 21:43:19 +01:00
env [ ' LINK_LIBGROUP_END ' ] = ' '
2012-01-18 23:10:11 +01:00
env [ ' RELOBJ_LIBDEPS_START ' ] = ' -z allextract '
env [ ' RELOBJ_LIBDEPS_END ' ] = ' -z defaultextract '
env [ ' RELOBJ_LIBDEPS_ITEM ' ] = ' '
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-07-24 20:27:35 +02:00
env [ " LIBPATH " ] = [ ]
2010-11-30 04:34:42 +01:00
if has_option ( " libpath " ) :
env [ " LIBPATH " ] = [ get_option ( " libpath " ) ]
2010-05-03 22:44:16 +02:00
2010-11-30 04:34:42 +01:00
if has_option ( " cpppath " ) :
env [ " CPPPATH " ] = [ get_option ( " cpppath " ) ]
2010-05-03 22:44:16 +02:00
2012-04-03 16:59:12 +02:00
env . Prepend ( CPPDEFINES = [ " _SCONS " ,
" MONGO_EXPOSE_MACROS " ,
" SUPPORT_UTF8 " ] , # for pcre
2012-03-07 18:14:38 +01:00
CPPPATH = [ ' $BUILD_DIR ' , " $BUILD_DIR/mongo " ] )
2009-07-24 20:27:35 +02:00
2010-11-30 04:34:42 +01:00
if has_option ( " safeshell " ) :
2010-02-13 04:16:12 +01:00
env . Append ( CPPDEFINES = [ " MONGO_SAFE_SHELL " ] )
2009-07-24 20:27:35 +02:00
2011-01-07 16:41:54 +01:00
if has_option ( " durableDefaultOn " ) :
env . Append ( CPPDEFINES = [ " _DURABLEDEFAULTON " ] )
2011-07-31 14:36:46 +02:00
if has_option ( " durableDefaultOff " ) :
env . Append ( CPPDEFINES = [ " _DURABLEDEFAULTOFF " ] )
2009-07-07 16:44:43 +02:00
boostCompiler = GetOption ( " boostCompiler " )
if boostCompiler is None :
boostCompiler = " "
else :
boostCompiler = " - " + boostCompiler
2009-08-31 20:56:49 +02:00
boostVersion = GetOption ( " boostVersion " )
if boostVersion is None :
boostVersion = " "
else :
boostVersion = " - " + boostVersion
2010-05-23 18:33:34 +02:00
if ( not ( usesm or usev8 or justClientLib ) ) :
2012-11-11 15:47:31 +01:00
usev8 = True
options_topass [ " usev8 " ] = True
2009-04-23 22:51:51 +02:00
2009-12-09 20:58:37 +01:00
extraLibPlaces = [ ]
2012-01-18 08:48:19 +01:00
env [ ' EXTRACPPPATH ' ] = [ ]
env [ ' EXTRALIBPATH ' ] = [ ]
2009-12-09 21:16:28 +01:00
def addExtraLibs ( s ) :
2009-12-09 23:41:14 +01:00
for x in s . split ( " , " ) :
2012-01-18 08:48:19 +01:00
env . Append ( EXTRACPPPATH = [ x + " /include " ] )
env . Append ( EXTRALIBPATH = [ x + " /lib " ] )
env . Append ( EXTRALIBPATH = [ x + " /lib64 " ] )
2009-12-09 23:34:18 +01:00
extraLibPlaces . append ( x + " /lib " )
2009-12-09 21:16:28 +01:00
2010-11-30 04:34:42 +01:00
if has_option ( " extrapath " ) :
2009-12-09 21:16:28 +01:00
addExtraLibs ( GetOption ( " extrapath " ) )
2010-11-30 04:34:42 +01:00
release = True # this is so we force using .a
2009-07-22 19:42:21 +02:00
2010-11-30 04:34:42 +01:00
if has_option ( " extrapathdyn " ) :
2009-12-09 21:16:28 +01:00
addExtraLibs ( GetOption ( " extrapathdyn " ) )
2010-11-30 04:34:42 +01:00
if has_option ( " extralib " ) :
2009-10-16 08:20:08 +02:00
for x in GetOption ( " extralib " ) . split ( " , " ) :
env . Append ( LIBS = [ x ] )
2010-05-24 05:30:52 +02:00
class InstallSetup :
binaries = False
2012-03-07 18:09:42 +01:00
libraries = False
2010-05-24 05:30:52 +02:00
headers = False
2010-05-23 18:33:34 +02:00
2010-05-24 05:30:52 +02:00
def __init__ ( self ) :
self . default ( )
2012-03-07 18:09:42 +01:00
2010-05-24 05:30:52 +02:00
def default ( self ) :
self . binaries = True
2010-07-26 20:29:30 +02:00
self . libraries = False
2010-05-24 05:30:52 +02:00
self . headers = False
2012-01-19 19:26:30 +01:00
2010-05-24 05:30:52 +02:00
installSetup = InstallSetup ( )
2010-11-30 04:34:42 +01:00
if has_option ( " full " ) :
2010-07-26 20:15:46 +02:00
installSetup . headers = True
2010-07-26 20:29:30 +02:00
installSetup . libraries = True
2010-07-26 20:15:46 +02:00
2009-04-23 22:51:51 +02:00
# ---- other build setup -----
2009-01-20 16:22:09 +01:00
2009-02-06 16:48:39 +01:00
platform = os . sys . platform
2009-02-10 16:07:18 +01:00
if " uname " in dir ( os ) :
processor = os . uname ( ) [ 4 ]
else :
processor = " i386 "
2009-02-06 16:48:39 +01:00
if force32 :
processor = " i386 "
if force64 :
processor = " x86_64 "
2012-01-19 19:26:30 +01:00
env [ ' PROCESSOR_ARCHITECTURE ' ] = processor
2010-07-23 19:17:22 +02:00
installDir = DEFAULT_INSTALL_DIR
2009-01-22 15:12:58 +01:00
nixLibPrefix = " lib "
2009-01-07 19:27:01 +01:00
2009-05-29 16:21:43 +02:00
dontReplacePackage = False
2012-03-07 18:09:42 +01:00
isBuildingLatest = False
2010-07-31 00:56:05 +02:00
2010-11-30 04:34:42 +01:00
if has_option ( " prefix " ) :
2009-02-01 23:51:00 +01:00
installDir = GetOption ( " prefix " )
2010-05-24 05:30:52 +02:00
2009-01-09 18:16:32 +01:00
def findVersion ( root , choices ) :
2010-05-03 23:29:49 +02:00
if not isinstance ( root , list ) :
root = [ root ]
for r in root :
for c in choices :
if ( os . path . exists ( r + c ) ) :
return r + c
raise RuntimeError ( " can ' t find a version of [ " + repr ( root ) + " ] choices: " + repr ( choices ) )
2009-01-09 18:16:32 +01:00
2010-01-28 22:36:47 +01:00
def filterExists ( paths ) :
return filter ( os . path . exists , paths )
2009-01-06 00:19:56 +01:00
if " darwin " == os . sys . platform :
2009-01-28 23:27:12 +01:00
darwin = True
2009-02-06 16:48:39 +01:00
platform = " osx " # prettier than darwin
2009-01-28 23:27:12 +01:00
2009-10-16 08:20:08 +02:00
if env [ " CXX " ] is None :
if os . path . exists ( " /usr/bin/g++-4.2 " ) :
env [ " CXX " ] = " g++-4.2 "
2009-01-06 00:53:46 +01:00
2009-01-07 19:27:01 +01:00
nix = True
2009-04-22 17:12:13 +02:00
2012-03-07 16:46:54 +01:00
if force64 :
env . Append ( EXTRACPPPATH = [ " /usr/64/include " ] )
env . Append ( EXTRALIBPATH = [ " /usr/64/lib " ] )
2012-03-07 18:09:42 +01:00
if installDir == DEFAULT_INSTALL_DIR :
2012-03-07 16:46:54 +01:00
installDir = " /usr/64/ "
else :
env . Append ( EXTRACPPPATH = filterExists ( [ " /sw/include " , " /opt/local/include " ] ) )
env . Append ( EXTRALIBPATH = filterExists ( [ " /sw/lib/ " , " /opt/local/lib " ] ) )
2009-01-25 16:01:43 +01:00
2011-10-25 16:31:52 +02:00
elif os . sys . platform . startswith ( " linux " ) :
2009-03-25 18:22:09 +01:00
linux = True
2009-02-06 22:53:08 +01:00
platform = " linux "
2009-02-01 15:06:49 +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
env . Append ( LIBS = [ ' m ' ] )
2009-01-22 16:14:03 +01:00
if os . uname ( ) [ 4 ] == " x86_64 " and not force32 :
2009-01-27 17:27:34 +01:00
linux64 = True
2009-01-22 15:12:58 +01:00
nixLibPrefix = " lib64 "
2012-01-18 20:01:39 +01:00
env . Append ( EXTRALIBPATH = [ " /usr/lib64 " , " /lib64 " ] )
2009-02-05 18:42:35 +01:00
env . Append ( LIBS = [ " pthread " ] )
2009-07-22 19:42:21 +02:00
2009-08-30 03:13:11 +02:00
force64 = False
2009-04-22 17:12:13 +02:00
2009-01-27 04:19:15 +01:00
if force32 :
2012-01-18 20:01:39 +01:00
env . Append ( EXTRALIBPATH = [ " /usr/lib32 " ] )
2012-12-31 16:58:26 +01:00
env . Append ( CCFLAGS = [ " -mmmx " ] )
2009-01-27 04:19:15 +01:00
2009-01-07 19:27:01 +01:00
nix = True
2009-07-07 17:12:39 +02:00
if static :
env . Append ( LINKFLAGS = " -static " )
2012-12-23 08:37:03 +01:00
if has_option ( " static-libstdc++ " ) :
env . Append ( LINKFLAGS = " -static-libstdc++ " )
2009-07-07 17:12:39 +02:00
2009-02-01 15:06:49 +01:00
elif " sunos5 " == os . sys . platform :
nix = True
2009-06-01 22:09:16 +02:00
solaris = True
2010-04-27 21:48:38 +02:00
env . Append ( CPPDEFINES = [ " __sunos__ " ] )
2009-07-17 17:21:42 +02:00
env . Append ( LIBS = [ " socket " , " resolv " ] )
2009-02-01 15:06:49 +01:00
2009-11-02 02:19:00 +01:00
elif os . sys . platform . startswith ( " freebsd " ) :
2009-05-27 16:44:45 +02:00
nix = True
freebsd = True
2012-06-11 22:28:11 +02:00
env . Append ( LIBS = [ " kvm " ] )
2012-01-18 20:01:39 +01:00
env . Append ( EXTRACPPPATH = [ " /usr/local/include " ] )
env . Append ( EXTRALIBPATH = [ " /usr/local/lib " ] )
2009-05-27 16:44:45 +02:00
env . Append ( CPPDEFINES = [ " __freebsd__ " ] )
2012-06-08 23:37:38 +02:00
env . Append ( CCFLAGS = [ " -fno-omit-frame-pointer " ] )
2009-05-27 16:44:45 +02:00
2010-06-20 22:29:03 +02:00
elif os . sys . platform . startswith ( " openbsd " ) :
nix = True
openbsd = True
2012-01-18 20:01:39 +01:00
env . Append ( EXTRACPPPATH = [ " /usr/local/include " ] )
env . Append ( EXTRALIBPATH = [ " /usr/local/lib " ] )
2010-06-20 22:29:03 +02:00
env . Append ( CPPDEFINES = [ " __openbsd__ " ] )
2009-01-07 21:51:42 +01:00
elif " win32 " == os . sys . platform :
2009-02-10 16:07:18 +01:00
windows = True
2012-03-07 18:09:42 +01:00
env [ ' DIST_ARCHIVE_SUFFIX ' ] = ' .zip '
2009-07-27 19:50:25 +02:00
2011-08-04 23:53:28 +02:00
if has_option ( " win2008plus " ) :
2011-07-08 23:38:29 +02:00
env . Append ( CPPDEFINES = [ " MONGO_USE_SRW_ON_WINDOWS " ] )
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 ' ) ) :
2010-05-03 01:17:35 +02:00
print ( " found visual studio at " + pathdir )
2012-09-02 14:21:46 +02:00
break
2009-12-29 20:23:48 +01:00
else :
2012-09-02 14:21:46 +02:00
#use current environment
env [ ' ENV ' ] = dict ( os . environ )
2009-12-29 20:23:48 +01:00
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-05-03 23:29:49 +02:00
winSDKHome = findVersion ( [ " C:/Program Files/Microsoft SDKs/Windows/ " , " C:/Program Files (x86)/Microsoft SDKs/Windows/ " ] ,
2011-02-22 20:23:07 +01:00
[ " v7.1 " , " v7.0A " , " v7.0 " , " v6.1 " , " v6.0a " , " v6.0 " ] )
2010-07-04 06:32:56 +02:00
print ( " Windows SDK Root ' " + winSDKHome + " ' " )
2009-01-07 21:51:42 +01:00
2012-03-02 17:13:09 +01:00
env . Append ( EXTRACPPPATH = [ winSDKHome + " /Include " ] )
2009-01-07 21:51:42 +01:00
2010-06-01 23:25:25 +02:00
# /EHsc exception handling style for visual studio
# /W3 warning level
2011-12-27 22:15:21 +01:00
# /WX abort build on compiler warnings
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.
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " /wd4355 " , " /wd4800 " , " /wd4267 " , " /wd4244 " ] )
2010-06-02 00:40:31 +02:00
2011-05-30 06:30:10 +02:00
# PSAPI_VERSION relates to process api dll Psapi.dll.
2011-08-18 16:49:50 +02:00
env . Append ( CPPDEFINES = [ " _CONSOLE " , " _CRT_SECURE_NO_WARNINGS " , " PSAPI_VERSION=1 " ] )
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 " ] )
2009-02-10 21:12:15 +01:00
if release :
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)
# /MT: use the multithreaded, static version of the run-time library (LIBCMT.lib)
env . Append ( CCFLAGS = [ " /O2 " , " /Oy- " , " /MT " ] )
2012-03-07 21:43:50 +01:00
2010-05-02 02:30:15 +02:00
# TODO: this has caused some linking problems :
2010-06-01 23:25:25 +02:00
# /GL whole program optimization
2010-06-03 20:29:11 +02:00
# /LTCG link time code generation
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " /GL " ] )
2010-05-02 02:30:15 +02:00
env . Append ( LINKFLAGS = " /LTCG " )
2012-03-07 21:43:50 +01:00
env . Append ( ARFLAGS = " /LTCG " ) # for the Library Manager
2011-12-23 23:28:36 +01:00
# /DEBUG will tell the linker to create a .pdb file
# which WinDbg and Visual Studio will use to resolve
2012-03-07 21:43:50 +01:00
# symbols if you want to debug a release-mode image.
# Note that this means we can't do parallel links in the build.
2011-12-23 23:28:36 +01:00
env . Append ( LINKFLAGS = " /DEBUG " )
2009-02-10 21:12:15 +01:00
else :
2011-12-27 22:15:21 +01:00
# /RTC1: - Enable Stack Frame Run-Time Error Checking; Reports when a variable is used without having been initialized
2012-03-07 21:43:50 +01:00
# (implies /Od: no optimizations)
# /MTd: Defines _DEBUG, _MT, and causes your application to use the
# debug multithread version of the run-time library (LIBCMTD.lib)
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " /RTC1 " , " /Od " , " /MTd " ] )
2010-08-14 06:09:26 +02:00
if debugBuild :
2012-03-07 21:43:50 +01:00
# If you build without --d, no debug PDB will be generated, and
# linking will be faster. However, you won't be able to debug your code with the debugger.
2010-08-14 06:09:26 +02:00
env . Append ( LINKFLAGS = " /debug " )
2012-03-07 21:43:50 +01:00
#if debugLogging:
# This is already implicit from /MDd...
#env.Append( CPPDEFINES=[ "_DEBUG" ] )
# This means --dd is always on unless you say --release
2009-01-07 21:51:42 +01:00
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
env . Append ( LINKFLAGS = " /LARGEADDRESSAWARE " )
2009-07-27 22:24:09 +02:00
if force64 :
2012-01-18 20:01:39 +01:00
env . Append ( EXTRALIBPATH = [ winSDKHome + " /Lib/x64 " ] )
2009-07-24 20:27:35 +02:00
else :
2012-01-18 20:01:39 +01:00
env . Append ( EXTRALIBPATH = [ winSDKHome + " /Lib " ] )
2009-07-24 20:27:35 +02:00
2010-06-18 12:44:11 +02:00
if release :
2010-07-03 05:21:50 +02:00
env . Append ( LINKFLAGS = " /NODEFAULTLIB:MSVCPRT " )
2010-06-18 12:44:11 +02:00
else :
env . Append ( LINKFLAGS = " /NODEFAULTLIB:MSVCPRT /NODEFAULTLIB:MSVCRT " )
2010-06-18 12:36:33 +02:00
2012-04-24 22:16:37 +02:00
winLibString = " ws2_32.lib kernel32.lib advapi32.lib Psapi.lib DbgHelp.lib "
2010-01-11 12:53:39 +01:00
2009-07-27 19:50:25 +02:00
if force64 :
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
2010-06-03 20:29:11 +02:00
winLibString + = " "
2009-07-27 19:50:25 +02:00
else :
winLibString + = " user32.lib gdi32.lib winspool.lib comdlg32.lib shell32.lib ole32.lib oleaut32.lib "
winLibString + = " odbc32.lib odbccp32.lib uuid.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 :
2012-01-03 19:53:04 +01:00
winLibString + = " winmm.lib "
2009-07-24 20:27:35 +02:00
env . Append ( LIBS = Split ( winLibString ) )
2009-07-27 22:24:09 +02:00
2012-01-20 00:07:26 +01:00
env . Append ( EXTRACPPPATH = [ " #/../winpcap/Include " ] )
env . Append ( EXTRALIBPATH = [ " #/../winpcap/Lib " ] )
2009-08-07 23:02:47 +02:00
2009-01-06 00:53:46 +01:00
else :
print ( " No special config for [ " + os . sys . platform + " ] which probably means it won ' t work " )
2009-01-06 00:19:56 +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
env [ ' STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME ' ] = 1
2009-01-07 19:27:01 +01:00
if nix :
2010-11-29 08:36:54 +01:00
2010-11-30 04:34:42 +01:00
if has_option ( " distcc " ) :
2010-11-29 08:36:54 +01:00
env [ " CXX " ] = " distcc " + env [ " CXX " ]
2012-01-19 19:26:30 +01: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.
env . Append ( CCFLAGS = [ " -fPIC " ,
" -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
2010-07-29 04:37:09 +02:00
if linux :
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " -Werror " , " -pipe " ] )
2012-01-19 19:26:30 +01:00
if not has_option ( ' clang ' ) :
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " -fno-builtin-memcmp " ] ) # glibc's memcmp is faster than gcc's
2011-03-11 23:06:41 +01:00
2012-03-07 18:09:42 +01:00
env . Append ( CPPDEFINES = [ " _FILE_OFFSET_BITS=64 " ] )
env . Append ( CXXFLAGS = [ " -Wnon-virtual-dtor " , " -Woverloaded-virtual " ] )
env . Append ( LINKFLAGS = [ " -fPIC " , " -pthread " , " -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
2010-11-30 04:34:42 +01:00
if linux and has_option ( " sharedclient " ) :
2010-07-26 23:17:20 +02:00
env . Append ( LINKFLAGS = " -Wl,--as-needed -Wl,-zdefs " )
2012-03-02 21:36:33 +01:00
if linux and has_option ( " gcov " ) :
env . Append ( CXXFLAGS = " -fprofile-arcs -ftest-coverage " )
env . Append ( LINKFLAGS = " -fprofile-arcs -ftest-coverage " )
2009-02-18 05:29:28 +01:00
if debugBuild :
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " -O0 " , " -fstack-protector " ] )
2010-05-26 04:08:45 +02:00
env [ ' ENV ' ] [ ' GLIBCXX_FORCE_NEW ' ] = 1 ; # play nice with valgrind
2009-01-30 16:29:07 +01:00
else :
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = [ " -O3 " ] )
2009-04-22 17:12:13 +02:00
2009-03-12 16:53:50 +01:00
if debugLogging :
2012-03-24 16:05:08 +01:00
env . Append ( CPPDEFINES = [ " _DEBUG " ] ) ;
2009-01-30 16:29:07 +01:00
2009-01-20 16:22:09 +01:00
if force64 :
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = " -m64 " )
2009-01-22 16:14:03 +01:00
env . Append ( LINKFLAGS = " -m64 " )
2009-01-20 16:22:09 +01:00
2009-01-22 15:12:58 +01:00
if force32 :
2012-03-24 16:05:08 +01:00
env . Append ( CCFLAGS = " -m32 " )
2009-01-22 16:14:03 +01:00
env . Append ( LINKFLAGS = " -m32 " )
2009-01-20 16:22:09 +01:00
2010-11-30 04:34:42 +01:00
if has_option ( " gdbserver " ) :
2010-01-29 20:23:54 +01:00
env . Append ( CPPDEFINES = [ " USE_GDBSERVER " ] )
2009-09-09 15:46:12 +02:00
# pre-compiled headers
2010-07-24 03:46:35 +02:00
if usePCH and ' Gch ' in dir ( env ) :
2009-09-09 15:46:12 +02:00
print ( " using precompiled headers " )
2011-03-11 23:06:41 +01:00
if has_option ( ' clang ' ) :
#env['GCHSUFFIX'] = '.pch' # clang++ uses pch.h.pch rather than pch.h.gch
#env.Prepend( CXXFLAGS=' -include pch.h ' ) # clang++ only uses pch from command line
print ( " ERROR: clang pch is broken for now " )
Exit ( 1 )
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 [ ' Gch ' ] = env . Gch ( " $BUILD_DIR/mongo/pch.h$GCHSUFFIX " ,
" src/mongo/pch.h " ) [ 0 ]
env [ ' GchSh ' ] = env [ ' Gch ' ]
elif os . path . exists ( env . File ( " $BUILD_DIR/mongo/pch.h$GCHSUFFIX " ) . abspath ) :
2010-07-24 03:46:35 +02:00
print ( " removing precompiled headers " )
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
os . unlink ( env . File ( " $BUILD_DIR/mongo/pch.h.$GCHSUFFIX " ) . abspath ) # gcc uses the file if it exists
2009-09-25 18:17:59 +02:00
2012-04-03 16:59:12 +02:00
if usesm :
env . Append ( CPPDEFINES = [ " JS_C_STRINGS_ARE_UTF8 " ] )
2009-08-28 22:44:03 +02:00
if " uname " in dir ( os ) :
hacks = buildscripts . findHacks ( os . uname ( ) )
if hacks is not None :
hacks . insert ( env , { " linux64 " : linux64 } )
2009-09-25 18:17:59 +02:00
2011-07-14 00:37:26 +02:00
if has_option ( " ssl " ) :
env . Append ( CPPDEFINES = [ " MONGO_SSL " ] )
2012-12-14 23:17:21 +01:00
if windows :
env . Append ( LIBS = [ " libeay32 " ] )
env . Append ( LIBS = [ " ssleay32 " ] )
else :
env . Append ( LIBS = [ " ssl " ] )
env . Append ( LIBS = [ " crypto " ] )
2011-07-14 00:37:26 +02:00
2009-08-05 21:38:58 +02:00
try :
umask = os . umask ( 022 )
except OSError :
pass
2011-06-29 21:06:12 +02:00
if not windows :
for keysuffix in [ " 1 " , " 2 " ] :
keyfile = " jstests/libs/key %s " % keysuffix
os . chmod ( keyfile , stat . S_IWUSR | stat . S_IRUSR )
2012-03-24 15:26:41 +01:00
if not use_system_version_of_library ( " pcre " ) :
2012-03-07 18:14:38 +01:00
env . Prepend ( CPPPATH = [ ' $BUILD_DIR/third_party/pcre-$ {PCRE_VERSION} ' ] )
2011-08-18 19:12:37 +02:00
2012-03-24 15:26:41 +01:00
if not use_system_version_of_library ( " boost " ) :
2012-03-07 18:14:38 +01:00
env . Prepend ( CPPPATH = [ ' $BUILD_DIR/third_party/boost ' ] ,
CPPDEFINES = [ ' BOOST_ALL_NO_LIB ' ] )
2012-03-02 17:13:09 +01:00
2012-12-17 22:10:59 +01:00
env . Prepend ( CPPPATH = [ ' $BUILD_DIR/third_party/s2 ' ] )
2012-12-25 18:07:05 +01:00
env . Prepend ( CPPPATH = [ ' $BUILD_DIR/third_party/libstemmer_c/include ' ] )
2012-12-17 22:10:59 +01:00
2012-01-18 08:48:19 +01:00
env . Append ( CPPPATH = [ ' $EXTRACPPPATH ' ] ,
LIBPATH = [ ' $EXTRALIBPATH ' ] )
2012-10-18 22:07:39 +02:00
# discover modules, and load the (python) module for each module's build.py
mongo_modules = moduleconfig . discover_modules ( ' src/mongo/db/modules ' )
env [ ' MONGO_MODULES ' ] = [ m . name for m in mongo_modules ]
2009-01-18 21:32:00 +01:00
# --- check system ---
2012-10-18 22:07:39 +02:00
2012-03-23 22:18:40 +01:00
def doConfigure ( myenv ) :
2009-02-01 23:39:07 +01:00
conf = Configure ( myenv )
2009-04-22 17:12:13 +02:00
2009-05-28 19:19:02 +02:00
if ' CheckCXX ' in dir ( conf ) :
if not conf . CheckCXX ( ) :
2009-05-28 19:19:19 +02:00
print ( " c++ compiler not installed! " )
2009-05-28 19:19:02 +02:00
Exit ( 1 )
2009-05-28 19:16:03 +02:00
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 )
2012-03-02 17:13:09 +01:00
for b in boostLibs :
l = " boost_ " + b
2012-03-23 22:18:40 +01:00
if not conf . CheckLib ( [ l + boostCompiler + " -mt " + boostVersion ,
l + boostCompiler + boostVersion ] , language = ' C++ ' ) :
Exit ( 1 )
2009-07-07 16:44:43 +02:00
2012-04-20 23:45:13 +02:00
if conf . CheckHeader ( ' unistd.h ' ) :
myenv . Append ( CPPDEFINES = [ ' MONGO_HAVE_HEADER_UNISTD_H ' ] )
if solaris or conf . CheckDeclaration ( ' clock_gettime ' , includes = ' #include <time.h> ' ) :
conf . CheckLib ( ' rt ' )
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
conf . CheckDeclaration ( ' backtrace_symbols ' , includes = ' #include <execinfo.h> ' ) ) :
myenv . Append ( CPPDEFINES = [ " MONGO_HAVE_EXECINFO_BACKTRACE " ] )
2009-08-12 20:54:53 +02:00
2012-03-23 22:18:40 +01:00
myenv [ " _HAVEPCAP " ] = conf . CheckLib ( [ " pcap " , " wpcap " ] , autoadd = False )
2009-03-12 14:30:14 +01:00
2009-08-28 17:50:20 +02:00
if solaris :
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 " ]
if not conf . CheckLib ( v8_lib_choices ) :
Exit ( 1 )
2009-10-10 07:30:00 +02:00
2012-10-29 18:12:36 +01:00
env [ ' MONGO_BUILD_SASL_CLIENT ' ] = bool ( has_option ( " use-sasl-client " ) )
if env [ ' MONGO_BUILD_SASL_CLIENT ' ] and not conf . CheckLibWithHeader (
" gsasl " , " gsasl.h " , " C " , " gsasl_check_version(GSASL_VERSION); " , autoadd = False ) :
Exit ( 1 )
2012-05-24 19:47:48 +02:00
# requires ports devel/libexecinfo to be installed
2010-06-20 22:29:03 +02:00
if freebsd or openbsd :
2012-05-24 19:47:48 +02:00
if not conf . CheckLib ( " execinfo " ) :
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 ' ) :
if not conf . CheckLib ( " tcmalloc " ) :
Exit ( 1 )
elif has_option ( " heapcheck " ) :
print ( " --heapcheck does not work with the tcmalloc embedded in the mongodb source "
" tree. Use --use-system-tcmalloc. " )
2012-03-23 22:18:40 +01:00
Exit ( 1 )
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
if has_option ( " heapcheck " ) :
2010-08-10 17:07:41 +02:00
if ( not debugBuild ) and ( not debugLogging ) :
print ( " --heapcheck needs --d or --dd " )
Exit ( 1 )
if not conf . CheckCXXHeader ( " google/heap-checker.h " ) :
print ( " --heapcheck neads header ' google/heap-checker.h ' " )
Exit ( 1 )
myenv . Append ( CPPDEFINES = [ " HEAP_CHECKING " ] )
2012-03-24 16:05:08 +01:00
myenv . Append ( CCFLAGS = [ " -fno-omit-frame-pointer " ] )
2010-08-10 17:07:41 +02:00
2012-10-18 22:07:39 +02:00
# ask each module to configure itself and the build environment.
moduleconfig . configure_modules ( mongo_modules , conf , env )
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
2012-08-07 17:47:56 +02:00
env [ ' PDB ' ] = ' $ {TARGET.base} .pdb '
2009-01-15 16:08:20 +01:00
testEnv = env . Clone ( )
testEnv . Append ( CPPPATH = [ " ../ " ] )
2009-02-01 23:39:07 +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
shellEnv = None
2009-02-09 20:30:45 +01:00
if noshell :
print ( " not building shell " )
2009-02-12 03:05:28 +01:00
elif not onlyServer :
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
shellEnv = env . Clone ( ) ;
if release and ( ( darwin and force64 ) or linux64 ) :
2012-03-23 22:18:40 +01:00
shellEnv [ " SLIBS " ] = [ ]
2009-02-02 00:41:25 +01:00
2009-02-12 03:05:28 +01:00
if windows :
shellEnv . Append ( LIBS = [ " winmm.lib " ] )
2009-04-22 17:12:13 +02:00
2013-02-22 17:33:36 +01:00
enforce_glibc = linux and has_option ( " release " ) and not has_option ( " no-glibc-check " )
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
2010-07-14 19:50:39 +02:00
# ---- Docs ----
def build_docs ( env , target , source ) :
from buildscripts import docs
docs . main ( )
env . Alias ( " docs " , [ ] , [ build_docs ] )
env . AlwaysBuild ( " docs " )
2010-12-29 08:04:19 +01:00
# ---- astyle ----
def doStyling ( env , target , source ) :
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
2011-01-04 07:52:48 +01:00
res = utils . execsys ( " astyle --version " )
2011-01-04 07:56:07 +01:00
res = " " . join ( res )
if res . count ( " 2. " ) == 0 :
print ( " astyle 2.x needed, found: " + res )
2011-01-04 07:52:48 +01:00
Exit ( - 1 )
2011-01-04 05:40:03 +01:00
files = utils . getAllSourceFiles ( )
files = filter ( lambda x : not x . endswith ( " .c " ) , files )
2011-01-26 00:22:24 +01:00
2011-01-04 05:40:03 +01:00
cmd = " astyle --options=mongo_astyle " + " " . join ( files )
2010-12-29 08:04:19 +01:00
res = utils . execsys ( cmd )
print ( res [ 0 ] )
print ( res [ 1 ] )
2011-01-04 05:40:03 +01:00
env . Alias ( " style " , [ ] , [ doStyling ] )
env . AlwaysBuild ( " style " )
2010-12-29 08:04:19 +01: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 ( ) :
n = platform + " - " + processor
if static :
n + = " -static "
2010-12-21 07:23:31 +01:00
if has_option ( " nostrip " ) :
2010-07-28 06:55:58 +02:00
n + = " -debugsymbols "
2012-09-19 01:10:54 +02:00
if nix and os . uname ( ) [ 2 ] . startswith ( " 8. " ) :
2009-08-14 16:55:52 +02:00
n + = " -tiger "
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
2009-11-20 19:47:22 +01:00
try :
2010-12-21 17:54:46 +01:00
findSettingsSetup ( )
2009-11-20 19:47:22 +01:00
import settings
2012-09-19 01:10:54 +02:00
if " distmod " in dir ( settings ) :
n = n + " - " + str ( settings . distmod )
2009-11-20 19:47:22 +01:00
except :
pass
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
2009-05-29 04:35:26 +02:00
def getCodeVersion ( ) :
2011-12-24 21:33:26 +01:00
fullSource = open ( " src/mongo/util/version.cpp " , " r " ) . read ( )
2009-05-29 04:35:26 +02:00
allMatches = re . findall ( r " versionString.. = \" (.*?) \" " , fullSource ) ;
if len ( allMatches ) != 1 :
print ( " can ' t find version # in code " )
return None
return allMatches [ 0 ]
2012-03-07 18:09:42 +01:00
mongoCodeVersion = getCodeVersion ( )
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 ( " + " , " - " ) :
dontReplacePackage = True
distName = mongoCodeVersion
else :
isBuildingLatest = True
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-03-07 18:09:42 +01:00
distFile = " $ {SERVER_ARCHIVE} "
2009-01-12 21:27:55 +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
env [ ' NIX_LIB_DIR ' ] = nixLibPrefix
env [ ' INSTALL_DIR ' ] = installDir
if testEnv is not None :
testEnv [ ' INSTALL_DIR ' ] = installDir
if shellEnv is not None :
shellEnv [ ' INSTALL_DIR ' ] = installDir
2009-11-19 17:20:03 +01:00
2009-01-17 15:22:55 +01:00
# ---- CONVENIENCE ----
def tabs ( env , target , source ) :
from subprocess import Popen , PIPE
from re import search , match
diff = Popen ( [ " git " , " diff " , " -U0 " , " origin " , " master " ] , stdout = PIPE ) . communicate ( ) [ 0 ]
sourceFile = False
for line in diff . split ( " \n " ) :
if match ( " diff --git " , line ) :
2009-01-18 16:23:57 +01:00
sourceFile = not not search ( " \ .(h|hpp|c|cpp) \ s*$ " , line )
2009-01-17 16:33:43 +01:00
if sourceFile and match ( " \ + * \t " , line ) :
2009-01-17 15:22:55 +01:00
return True
return False
env . Alias ( " checkSource " , [ ] , [ tabs ] )
env . AlwaysBuild ( " checkSource " )
def gitPush ( env , target , source ) :
import subprocess
return subprocess . call ( [ " git " , " push " ] )
2009-01-26 22:29:19 +01:00
env . Alias ( " push " , [ " . " , " smoke " , " checkSource " ] , gitPush )
2009-01-17 15:22:55 +01:00
env . AlwaysBuild ( " push " )
2009-01-27 19:08:44 +01:00
# ---- deploying ---
2012-10-04 22:12:18 +02:00
def s3push ( localName , remoteName = None , platformDir = True ) :
2012-01-20 09:32:00 +01:00
localName = str ( localName )
2012-10-04 22:12:18 +02:00
if isBuildingLatest :
remotePrefix = utils . getGitBranchString ( " - " ) + " -latest "
else :
remotePrefix = " - " + distName
2009-02-11 03:37:18 +01:00
2010-12-21 17:54:46 +01:00
findSettingsSetup ( )
2009-01-27 19:08:44 +01:00
2012-02-18 07:55:34 +01:00
import simples3
import settings
2009-01-27 19:08:44 +01:00
2012-02-18 07:55:34 +01:00
s = simples3 . S3Bucket ( settings . bucket , settings . id , settings . key )
2009-01-27 19:08:44 +01:00
2012-02-18 07:55:34 +01:00
if remoteName is None :
2009-01-27 19:08:44 +01:00
remoteName = localName
2009-04-22 17:12:13 +02:00
2012-10-04 22:12:18 +02:00
name = ' %s - %s %s ' % ( remoteName , getSystemInstallName ( ) , remotePrefix )
lastDotIndex = localName . rfind ( ' . ' )
if lastDotIndex != - 1 :
name + = localName [ lastDotIndex : ]
name = name . lower ( )
2012-03-07 18:09:42 +01:00
2012-04-05 19:59:31 +02:00
if platformDir :
2009-02-06 16:48:39 +01:00
name = platform + " / " + name
2012-02-18 07:55:34 +01:00
print ( " uploading " + localName + " to http://s3.amazonaws.com/ " + s . name + " / " + name )
2009-05-29 16:21:43 +02:00
if dontReplacePackage :
2012-02-18 07:55:34 +01:00
for ( key , modify , etag , size ) in s . listdir ( prefix = name ) :
2009-05-29 16:21:43 +02:00
print ( " error: already a file with that name, not uploading " )
Exit ( 2 )
2012-02-18 07:55:34 +01:00
s . put ( name , open ( localName , " rb " ) . read ( ) , acl = " public-read " ) ;
2009-02-11 03:37:18 +01:00
print ( " done uploading! " )
2009-01-27 19:08:44 +01:00
def s3shellpush ( env , target , source ) :
s3push ( " mongo " , " mongo-shell " )
env . Alias ( " s3shell " , [ " mongo " ] , [ s3shellpush ] )
env . AlwaysBuild ( " s3shell " )
2009-02-02 00:27:04 +01:00
def s3dist ( env , target , source ) :
2012-03-07 18:09:42 +01:00
s3push ( str ( source [ 0 ] ) , " mongodb " )
2009-02-02 01:11:45 +01:00
2012-03-07 18:09:42 +01:00
def s3distclient ( env , target , source ) :
2012-04-05 19:59:31 +02:00
s3push ( str ( source [ 0 ] ) , " cxx-driver/mongodb " , platformDir = False )
2010-05-05 16:56:44 +02:00
2012-03-07 18:09:42 +01:00
env . Alias ( " dist " , ' $SERVER_ARCHIVE ' )
env . Alias ( " distclient " , " $CLIENT_ARCHIVE " )
env . AlwaysBuild ( env . Alias ( " s3dist " , [ ' $SERVER_ARCHIVE ' ] , [ s3dist ] ) )
env . AlwaysBuild ( env . Alias ( " s3distclient " , [ ' $CLIENT_ARCHIVE ' ] , [ s3distclient ] ) )
2009-02-02 00:27:04 +01:00
2010-02-02 18:36:58 +01:00
# --- an uninstall target ---
if len ( COMMAND_LINE_TARGETS ) > 0 and ' uninstall ' in COMMAND_LINE_TARGETS :
SetOption ( " clean " , 1 )
# By inspection, changing COMMAND_LINE_TARGETS here doesn't do
# what we want, but changing BUILD_TARGETS does.
BUILD_TARGETS . remove ( " uninstall " )
BUILD_TARGETS . append ( " install " )
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
2012-03-07 18:09:42 +01:00
clientEnv = env . Clone ( )
clientEnv [ ' CPPDEFINES ' ] . remove ( ' MONGO_EXPOSE_MACROS ' )
2012-03-24 15:26:41 +01:00
if not use_system_version_of_library ( " boost " ) :
2012-03-07 18:09:42 +01:00
clientEnv . Append ( LIBS = [ ' boost_thread ' , ' boost_filesystem ' , ' boost_system ' ] )
clientEnv . Prepend ( LIBPATH = [ ' $BUILD_DIR/third_party/boost/ ' ] )
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 " )
2012-03-07 18:09:42 +01:00
Export ( " clientEnv " )
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
Export ( " shellEnv " )
Export ( " testEnv " )
2012-03-24 15:26:41 +01:00
Export ( " has_option use_system_version_of_library " )
2012-03-07 18:09:42 +01:00
Export ( " installSetup " )
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
Export ( " usesm usev8 " )
2012-10-25 23:06:27 +02:00
Export ( " darwin windows solaris linux freebsd nix " )
2012-10-18 22:07:39 +02:00
Export ( ' module_sconscripts ' )
2012-10-25 23:06:27 +02:00
Export ( " debugBuild " )
2013-02-22 17:33:36 +01:00
Export ( " enforce_glibc " )
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
2012-10-18 22:07:39 +02:00
env . SConscript ( ' src/SConscript ' , variant_dir = ' $BUILD_DIR ' , duplicate = False )
env . SConscript ( ' src/SConscript.client ' , variant_dir = ' $BUILD_DIR/client_build ' , duplicate = False )
env . SConscript ( [ ' SConscript.buildinfo ' , ' SConscript.smoke ' ] )
2012-01-21 08:03:12 +01:00
def clean_old_dist_builds ( env , target , source ) :
prefix = " mongodb- %s - %s " % ( platform , processor )
filenames = sorted ( os . listdir ( " . " ) )
filenames = [ x for x in filenames if x . startswith ( prefix ) ]
to_keep = [ x for x in filenames if x . endswith ( " .tgz " ) or x . endswith ( " .zip " ) ] [ - 2 : ]
for filename in [ x for x in filenames if x not in to_keep ] :
print " removing %s " % filename
try :
shutil . rmtree ( filename )
except :
os . remove ( filename )
env . Alias ( " dist_clean " , [ ] , [ clean_old_dist_builds ] )
env . AlwaysBuild ( " dist_clean " )
2012-03-07 18:09:42 +01:00
2012-10-26 19:25:03 +02:00
env . Alias ( ' all ' , [ ' core ' , ' tools ' , ' clientTests ' , ' test ' , ' unittests ' , ' moduletests ' ] )