SCons: Enforce version 4.0+ when compiledb=yes
is used
Fixes #65233.
(cherry picked from commit 6c5e085d13
)
This commit is contained in:
parent
6d9904f1a9
commit
c4179fb179
1 changed files with 6 additions and 3 deletions
|
@ -395,9 +395,12 @@ if selected_platform in platform_list:
|
||||||
|
|
||||||
scons_ver = env._get_major_minor_revision(scons_raw_version)
|
scons_ver = env._get_major_minor_revision(scons_raw_version)
|
||||||
|
|
||||||
if scons_ver >= (4, 0, 0):
|
if scons_ver < (4, 0, 0):
|
||||||
env.Tool("compilation_db")
|
print("The `compiledb=yes` option requires SCons 4.0 or later, but your version is %s." % scons_raw_version)
|
||||||
env.Alias("compiledb", env.CompilationDatabase())
|
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.
|
||||||
|
|
Loading…
Reference in a new issue