3923b686c7
This header is much more restrictive than its old name would suggest. As a result, most of the tests that use it don't actually run in any CI jobs.
17 lines
466 B
Makefile
17 lines
466 B
Makefile
# needs-force-clang-based-tests
|
|
|
|
# FIXME(#126180): This test doesn't actually run anywhere, because the only
|
|
# CI job that sets RUSTBUILD_FORCE_CLANG_BASED_TESTS runs very few tests.
|
|
|
|
include ../tools.mk
|
|
|
|
ifeq ($(TARGET),wasm32-unknown-unknown)
|
|
all:
|
|
$(RUSTC) foo.rs --crate-type cdylib --target $(TARGET) -C linker=$(CLANG)
|
|
else ifeq ($(TARGET),wasm64-unknown-unknown)
|
|
all:
|
|
$(RUSTC) foo.rs --crate-type cdylib --target $(TARGET) -C linker=$(CLANG)
|
|
else
|
|
all:
|
|
endif
|