From f6c8c8adc95b6d8ca997cdd8d20681e958686bc0 Mon Sep 17 00:00:00 2001 From: Marton Neher Date: Wed, 3 Dec 2025 05:05:43 -0800 Subject: [PATCH] [bugfix] Reference os variable instead of os function on toolchain/internal/common.bzl:121, we referenced the `os` function instead of the local `_os` variable, which made my local build throw stacktraces on toolchain_llvm v1.5.0 (was ok in v1.4.0). I no longer have stacktraces with this fix locally present.. --- toolchain/internal/common.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/internal/common.bzl b/toolchain/internal/common.bzl index 08f4e19b..769cd849 100644 --- a/toolchain/internal/common.bzl +++ b/toolchain/internal/common.bzl @@ -118,7 +118,7 @@ def host_info(rctx): if _os == "linux" and not rctx.attr.exec_os: dist_name, dist_version = _linux_dist(rctx) else: - dist_name = os + dist_name = _os dist_version = "" return struct( arch = _arch,