You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Tweak some help texts in the build system
This also removes `unix_global_settings_path` from SConstruct since it is no longer used.
This commit is contained in:
@@ -28,8 +28,8 @@ def get_opts():
|
||||
from SCons.Variables import BoolVariable
|
||||
|
||||
return [
|
||||
('msvc_version', 'MSVC version to use. Ignored if VCINSTALLDIR is set in shell env.', None),
|
||||
BoolVariable('use_mingw', 'Use the Mingw compiler, even if MSVC is installed. Only used on Windows.', False),
|
||||
('msvc_version', 'MSVC version to use (ignored if the VCINSTALLDIR environment variable is set)', None),
|
||||
BoolVariable('use_mingw', 'Use the MinGW compiler even if MSVC is installed (only used on Windows)', False),
|
||||
]
|
||||
|
||||
|
||||
@@ -112,7 +112,7 @@ def configure(env):
|
||||
env["bits"] = "32"
|
||||
print("Compiled program architecture will be a x86 executable. (forcing bits=32).")
|
||||
else:
|
||||
print("Failed to detect MSVC compiler architecture version... Defaulting to 32bit executable settings (forcing bits=32). Compilation attempt will continue, but SCons can not detect for what architecture this build is compiled for. You should check your settings/compilation setup.")
|
||||
print("Failed to detect MSVC compiler architecture version... Defaulting to 32-bit executable settings (forcing bits=32). Compilation attempt will continue, but SCons can not detect for what architecture this build is compiled for. You should check your settings/compilation setup.")
|
||||
env["bits"] = "32"
|
||||
|
||||
if (env["bits"] == "32"):
|
||||
|
||||
Reference in New Issue
Block a user