summaryrefslogtreecommitdiff
path: root/src/SConscript
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-38176 Compile with /permissive- on MSVC to make the compiler strictly ↵Henrik Edin2019-02-011-1/+1
| | | | standard conformant.
* SERVER-38107 Add abseil-cpp to third_partyHenrik Edin2018-11-151-1/+2
| | | | Just compiling in the hash tables for now.
* SERVER-27497 Scope SCons Environment changes narrowlyAndrew Morrow2017-01-031-10/+22
|
* SERVER-14343 leaner include pathsAndrew Morrow2014-07-121-4/+9
|
* SERVER-7118 Change "mongo modules" to use SConscript files for modules.Andy Schwerin2012-10-231-2/+5
| | | | | | | | | | Also allows you to have modules in mongos and the shell, as well as mongod. Requires changes to the modules, to have SConscript files, and define libraries. Allows modules to have unit tests, interesting linking rules, dependencies into mongo, etc. Still may need to do some work on includes. The mongo-enterprise module has very simple include requirements, today.
* SCons updates to support variant directories.Andy Schwerin2012-01-171-0/+7
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.