IQ.Pilot Release Commit @ 0809b59

This commit is contained in:
IQ.Lvbs CI [bot]
2026-07-30 19:40:36 -05:00
parent c7908ad2e0
commit a6c27ac169
228 changed files with 11183 additions and 11691 deletions

View File

@@ -10,6 +10,13 @@ import SCons.Errors
SCons.Warnings.warningAsException(True)
# scons only auto-loads a site dir named site_scons at the repo root; ours lives under tools/,
# so replicate what _load_site_scons_dir does (sys.path for site_tools imports + run site_init)
SITE_DIR = Dir('#tools/scons').abspath
if SITE_DIR not in sys.path:
sys.path.insert(0, SITE_DIR)
import site_init # noqa: F401
# capnp's kj library warns when $PWD is stale (doesn't match the real cwd); keep them in sync
os.environ.pop('PWD', None)
@@ -100,7 +107,7 @@ env = Environment(
COMPILATIONDB_USE_ABSPATH=True,
REDNOSE_ROOT="#",
tools=["default", "cython", "compilation_db", "rednose_filter"],
toolpath=["#site_scons/site_tools", "#rednose_repo/site_scons/site_tools"],
toolpath=["#tools/scons/site_tools", "#rednose_repo/site_scons/site_tools"],
)
# Arch-specific flags and paths