Browse Source

Merge pull request #45634 from Calinou/fix-scons-compilation-db-comment

Fix incorrect version requirement in the SCons compilation DB comment
Rémi Verschelde 4 năm trước cách đây
mục cha
commit
1db16f08d3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      SConstruct

+ 1 - 1
SConstruct

@@ -308,7 +308,7 @@ if selected_platform in platform_list:
     else:
         env = env_base.Clone()
 
-    # Compilation DB requires SCons 3.1.1+.
+    # 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)