From 3a4c4931a2cff5d21f8a38b286c0af2a067b6495 Mon Sep 17 00:00:00 2001 From: Marcel Kirsche Date: Tue, 30 Dec 2025 17:12:57 +0100 Subject: [PATCH] Fix include order --- toolchain/templates/compiler.BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/templates/compiler.BUILD b/toolchain/templates/compiler.BUILD index 370bc33..485c4de 100644 --- a/toolchain/templates/compiler.BUILD +++ b/toolchain/templates/compiler.BUILD @@ -24,9 +24,9 @@ TOOLS = %tools% filegroup( name = "include_path", srcs = [ + "{}/include".format(PREFIX), "{}/include/c++/{}".format(PREFIX, VERSION), "{}/include/c++/{}/{}".format(PREFIX, VERSION, PREFIX), - "{}/include".format(PREFIX), "lib/gcc/{}/{}/include".format(PREFIX, VERSION), "lib/gcc/{}/{}/include-fixed".format(PREFIX, VERSION), ],