Skip to content

Commit

Permalink
fix: remove incorrect include directory location
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbatashev committed Jan 1, 2024
1 parent 05517c3 commit 9234d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/private/toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ load("//cpp/private:tool.bzl", "ToolInfo")
def _get_include_paths(stdlib, compiler):
include_dirs = []
stdlib_base = stdlib.label.workspace_root + "/"
compiler_base = compiler.root.path + "/../"
compiler_base = compiler.dirname + "/../"
if is_libcpp(stdlib):
include_dirs += [
stdlib_base + "include/c++/v1",
Expand Down

0 comments on commit 9234d5a

Please sign in to comment.