Skip to content

Commit bebfc1d

Browse files
robinlindenmotiejus
authored andcommitted
Fix non-existent paths being included in globs
1 parent 7d3b60f commit bebfc1d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

toolchain/private/defs.bzl

-4
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ def target_structs():
5151
return ret
5252

5353
def _target_macos(gocpu, zigcpu):
54-
min_os = "11"
5554
copts = []
5655

5756
if zigcpu == "aarch64":
@@ -62,9 +61,6 @@ def _target_macos(gocpu, zigcpu):
6261
zigtarget = "{}-macos-none".format(zigcpu),
6362
includes = [
6463
"libunwind/include",
65-
# TODO: Define a toolchain for each minimum OS version
66-
"libc/include/{}-macos.{}-none".format(zigcpu, min_os),
67-
"libc/include/any-macos.{}-any".format(min_os),
6864
"libc/include/any-macos-any",
6965
] + _INCLUDE_TAIL,
7066
linkopts = ["-Wl,-headerpad_max_install_names"],

0 commit comments

Comments
 (0)