Skip to content

Commit

Permalink
Fix cpp stdlib include error.
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Benusovich <[email protected]>
  • Loading branch information
dbenusov committed Jul 24, 2024
1 parent 151356e commit 48af0ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolchain/templates/compiler.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ TOOLS = %tools%
filegroup(
name = "include_path",
srcs = [
"{}/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),
"{}/include/c++/{}".format(PREFIX, VERSION),
"{}/include/c++/{}/{}".format(PREFIX, VERSION, PREFIX),
],
)

Expand Down

0 comments on commit 48af0ac

Please sign in to comment.