Prepend PATH to scons env

pull/1139/head
Trey Moller 2023-06-14 10:30:24 -05:00 committed by GitHub
parent be25a50617
commit 6f7e80bbb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ else:
# Default tools with no platform defaults to gnu toolchain. # Default tools with no platform defaults to gnu toolchain.
# We apply platform specific toolchains via our custom tools. # We apply platform specific toolchains via our custom tools.
env = Environment(tools=["default"], PLATFORM="") env = Environment(tools=["default"], PLATFORM="")
env.PrependENVPath("PATH", os.getenv("PATH"))
# Default num_jobs to local cpu count if not user specified. # Default num_jobs to local cpu count if not user specified.
# SCons has a peculiarity where user-specified options won't be overridden # SCons has a peculiarity where user-specified options won't be overridden