summaryrefslogtreecommitdiff
path: root/src/SConscript
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-40147 Upgrade third-party variant from 1.3.0 to 1.4.0Ryan Egesdahl2020-06-261-0/+1
| | | | | | We use a third-party implementation of std::variant on platforms that do not include it. This change simply upgrades the third-party source to the most recent release and then fixes the way we actually depend on it.
* SERVER-26906 Add constexpr function to convert DurationsA. Jesse Jiryu Davis2019-05-311-2/+3
|
* SERVER-40389 small tweaks to third_party/fmt & related.Billy Donahue2019-04-081-0/+1
| | | | | | | | | | | Add an option to scons: --use-system-fmt import.sh: use the upstream libfmt github repo. StringData fmt interop noexcept for to_string_view(StringData) hook noexcept for StringData's rawData() and size() add fmt to THIRD-PARTY-NOTICES + markdown tweaks import the fmt LICENSE.rst update fmt lib revision
* 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.