Skip to content

Commit 164fd69

Browse files
committed
Do not check if libclang_rt.?san_*_dynamic.dylib is an unstable crate.
These are not even crates...
1 parent 86747a9 commit 164fd69

File tree

1 file changed

+4
-3
lines changed
  • src/test/run-make/sysroot-crates-are-unstable

1 file changed

+4
-3
lines changed

src/test/run-make/sysroot-crates-are-unstable/Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
-include ../tools.mk
22

3-
# This is a whitelist of crates which are stable, we don't check for the
4-
# instability of these crates as they're all stable!
3+
# This is a whitelist of files which are stable crates or simply are not crates,
4+
# we don't check for the instability of these crates as they're all stable!
55
STABLE_CRATES := \
66
std \
77
core \
88
proc_macro \
99
rsbegin.o \
1010
rsend.o \
1111
dllcrt2.o \
12-
crt2.o
12+
crt2.o \
13+
clang_rt.%_dynamic.dylib
1314

1415
# Generate a list of all crates in the sysroot. To do this we list all files in
1516
# rustc's sysroot, look at the filename, strip everything after the `-`, and

0 commit comments

Comments
 (0)