Skip to content

Commit 8de3ddf

Browse files
committed
Remove *ios* case from print-target-list Makefile
Based on the TODO, this case was added to short-circuit for ios builds, which is no longer necessary. The comment in this Makefile mentions #29812 as a dependency, but that issue has been since closed, with a statement that the ICE of concern was resolved circa 1.12. Here we remove this case, and just run the same branch for all targets. Signed-off-by: Kristofer Rye <[email protected]>
1 parent fa40a11 commit 8de3ddf

File tree

1 file changed

+0
-3
lines changed
  • src/test/run-make-fulldeps/print-target-list

1 file changed

+0
-3
lines changed

src/test/run-make-fulldeps/print-target-list/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@
22

33
# Checks that all the targets returned by `rustc --print target-list` are valid
44
# target specifications
5-
# TODO remove the '*ios*' case when rust-lang/rust#29812 is fixed
65
all:
76
for target in $(shell $(BARE_RUSTC) --print target-list); do \
87
case $$target in \
9-
*ios*) \
10-
;; \
118
*) \
129
$(BARE_RUSTC) --target $$target --print sysroot \
1310
;; \

0 commit comments

Comments
 (0)