summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Gu <juan.gu@mongodb.com>2022-10-26 22:39:48 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-27 22:33:51 +0000
commit9775ef6d331f7855820450e23ecbb03c319431e3 (patch)
treee40a294f7b9086e70dc132f1f2a518914fdaabc2
parent33a8f0450dc85f19c8d4921a889b8b0e8fa96864 (diff)
downloadmongo-9775ef6d331f7855820450e23ecbb03c319431e3.tar.gz
SERVER-67681 Create specific target for compile commands
(cherry picked from commit 3a31638a3c0bc80fe03faf0bafba5aefaefc2b84)
-rw-r--r--SConstruct2
-rw-r--r--site_scons/mongo/build_profiles.py6
2 files changed, 7 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 2e95496710d..ea2f47d2641 100644
--- a/SConstruct
+++ b/SConstruct
@@ -521,7 +521,7 @@ add_option(
action="append",
choices=["configure", "source"],
const="source",
- default=[],
+ default=build_profile.disable_warnings_as_errors,
help=
"Don't add a warnings-as-errors flag to compiler command lines in selected contexts; defaults to 'source' if no argument is provided",
nargs="?",
diff --git a/site_scons/mongo/build_profiles.py b/site_scons/mongo/build_profiles.py
index a68165c6e09..96528c2b469 100644
--- a/site_scons/mongo/build_profiles.py
+++ b/site_scons/mongo/build_profiles.py
@@ -17,6 +17,7 @@ class BuildProfile:
CCACHE: Optional[str]
NINJA_PREFIX: str
VARIANT_DIR: Any
+ disable_warnings_as_errors: Optional[List]
BUILD_PROFILES = {
@@ -34,6 +35,7 @@ BUILD_PROFILES = {
CCACHE=None,
NINJA_PREFIX="build",
VARIANT_DIR=mongo_generators.default_variant_dir_generator,
+ disable_warnings_as_errors=[],
),
# This build has fast runtime speed & fast build time at the cost of debuggability.
"fast":
@@ -52,6 +54,7 @@ BUILD_PROFILES = {
CCACHE="ccache",
NINJA_PREFIX="fast",
VARIANT_DIR="fast",
+ disable_warnings_as_errors=[],
),
# This build has fast runtime speed & debuggability at the cost of build time.
"opt":
@@ -70,6 +73,7 @@ BUILD_PROFILES = {
CCACHE="ccache",
NINJA_PREFIX="opt",
VARIANT_DIR="opt",
+ disable_warnings_as_errors=[],
),
# This build leverages santizers & is the suggested build profile to use for development.
"san":
@@ -88,6 +92,7 @@ BUILD_PROFILES = {
CCACHE="ccache",
NINJA_PREFIX="san",
VARIANT_DIR="san",
+ disable_warnings_as_errors=[],
),
#These options are the preferred settings for compiledb to generating compile_commands.json
@@ -107,5 +112,6 @@ BUILD_PROFILES = {
CCACHE=None,
NINJA_PREFIX="build",
VARIANT_DIR=mongo_generators.default_variant_dir_generator,
+ disable_warnings_as_errors=['source'],
),
}