You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
SCons: Fix compilation database generation with MSVC
Fixes #54434.
Co-authored-by: Daniel Moody <daniel.moody@mongodb.com>
(cherry picked from commit 22381d9d07)
This commit is contained in:
26
SConstruct
26
SConstruct
@@ -389,19 +389,6 @@ if selected_platform in platform_list:
|
|||||||
)
|
)
|
||||||
env.SetOption("num_jobs", safer_cpu_count)
|
env.SetOption("num_jobs", safer_cpu_count)
|
||||||
|
|
||||||
if env["compiledb"]:
|
|
||||||
# Generating the compilation DB (`compile_commands.json`) requires SCons 4.0.0 or later.
|
|
||||||
from SCons import __version__ as scons_raw_version
|
|
||||||
|
|
||||||
scons_ver = env._get_major_minor_revision(scons_raw_version)
|
|
||||||
|
|
||||||
if scons_ver < (4, 0, 0):
|
|
||||||
print("The `compiledb=yes` option requires SCons 4.0 or later, but your version is %s." % scons_raw_version)
|
|
||||||
Exit(255)
|
|
||||||
|
|
||||||
env.Tool("compilation_db")
|
|
||||||
env.Alias("compiledb", env.CompilationDatabase())
|
|
||||||
|
|
||||||
# 'dev' and 'production' are aliases to set default options if they haven't been set
|
# 'dev' and 'production' are aliases to set default options if they haven't been set
|
||||||
# manually by the user.
|
# manually by the user.
|
||||||
if env["dev"]:
|
if env["dev"]:
|
||||||
@@ -704,6 +691,19 @@ if selected_platform in platform_list:
|
|||||||
env.vs_incs = []
|
env.vs_incs = []
|
||||||
env.vs_srcs = []
|
env.vs_srcs = []
|
||||||
|
|
||||||
|
if env["compiledb"]:
|
||||||
|
# Generating the compilation DB (`compile_commands.json`) requires SCons 4.0.0 or later.
|
||||||
|
from SCons import __version__ as scons_raw_version
|
||||||
|
|
||||||
|
scons_ver = env._get_major_minor_revision(scons_raw_version)
|
||||||
|
|
||||||
|
if scons_ver < (4, 0, 0):
|
||||||
|
print("The `compiledb=yes` option requires SCons 4.0 or later, but your version is %s." % scons_raw_version)
|
||||||
|
Exit(255)
|
||||||
|
|
||||||
|
env.Tool("compilation_db")
|
||||||
|
env.Alias("compiledb", env.CompilationDatabase())
|
||||||
|
|
||||||
Export("env")
|
Export("env")
|
||||||
|
|
||||||
# build subdirs, the build order is dependent on link order.
|
# build subdirs, the build order is dependent on link order.
|
||||||
|
|||||||
Reference in New Issue
Block a user