Skip to content

Commit dea183a

Browse files
committed
Auto merge of #31361 - alexcrichton:revert-mk-changes, r=brson
This reverts commit d037129.
2 parents 2dc132e + 178d4b0 commit dea183a

14 files changed

+57
-66
lines changed

mk/cfg/aarch64-linux-android.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# aarch64-linux-android configuration
2+
# CROSS_PREFIX_aarch64-linux-android-
23
CC_aarch64-linux-android=$(CFG_AARCH64_LINUX_ANDROID_NDK)/bin/aarch64-linux-android-gcc
34
CXX_aarch64-linux-android=$(CFG_AARCH64_LINUX_ANDROID_NDK)/bin/aarch64-linux-android-g++
45
CPP_aarch64-linux-android=$(CFG_AARCH64_LINUX_ANDROID_NDK)/bin/aarch64-linux-android-gcc -E

mk/cfg/x86_64-apple-ios.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ CFG_UNIXY_x86_64-apple-ios := 1
2929
CFG_LDPATH_x86_64-apple-ios :=
3030
CFG_RUN_x86_64-apple-ios = $(2)
3131
CFG_RUN_TARG_x86_64-apple-ios = $(call CFG_RUN_x86_64-apple-ios,,$(2))
32-
CFG_GNU_TRIPLE_x86_64-apple-ios := x86_64-apple-ios
32+
CFG_GNU_TRIPLE_i386-apple-ios := x86_64-apple-ios

mk/cfg/x86_64-unknown-bitrig.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CFG_LIB_GLOB_x86_64-unknown-bitrig=lib$(1)-*.so
99
CFG_LIB_DSYM_GLOB_x86_64-unknown-bitrig=$(1)-*.dylib.dSYM
1010
CFG_JEMALLOC_CFLAGS_x86_64-unknown-bitrig := -m64 -I/usr/include $(CFLAGS)
1111
CFG_GCCISH_CFLAGS_x86_64-unknown-bitrig := -Wall -Werror -fPIE -fPIC -m64 -I/usr/include $(CFLAGS)
12-
CFG_GCCISH_LINK_FLAGS_x86_64-unknown-bitrig := -shared -pic -pthread -m64
12+
CFG_GCCISH_LINK_FLAGS_x86_64-unknown-bitrig := -shared -pic -pthread -m64 $(LDFLAGS)
1313
CFG_GCCISH_DEF_FLAG_x86_64-unknown-bitrig := -Wl,--export-dynamic,--dynamic-list=
1414
CFG_LLC_FLAGS_x86_64-unknown-bitrig :=
1515
CFG_INSTALL_NAME_x86_64-unknown-bitrig =

mk/crates.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ ONLY_RLIB_alloc_system := 1
139139
# Documented-by-default crates
140140
DOC_CRATES := std alloc collections core libc rustc_unicode
141141

142-
ifdef CFG_DISABLE_JEMALLOC
143-
RUSTFLAGS_rustc_back := --cfg disable_jemalloc
144-
else
142+
ifeq ($(CFG_DISABLE_JEMALLOC),)
145143
TARGET_CRATES += alloc_jemalloc
146144
DEPS_std += alloc_jemalloc
147145
DEPS_alloc_jemalloc := core libc native:jemalloc
148146
ONLY_RLIB_alloc_jemalloc := 1
147+
else
148+
RUSTFLAGS_rustc_back := --cfg disable_jemalloc
149149
endif
150150

151151
################################################################################

mk/docs.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ DOC_L10N_TARGETS :=
7171

7272
# If NO_REBUILD is set then break the dependencies on rustdoc so we
7373
# build the documentation without having to rebuild rustdoc.
74-
ifndef NO_REBUILD
74+
ifeq ($(NO_REBUILD),)
7575
HTML_DEPS := $(RUSTDOC_EXE)
7676
else
7777
HTML_DEPS :=
@@ -152,7 +152,7 @@ define DEF_LIB_DOC
152152

153153
# If NO_REBUILD is set then break the dependencies on rustdoc so we
154154
# build crate documentation without having to rebuild rustdoc.
155-
ifndef NO_REBUILD
155+
ifeq ($(NO_REBUILD),)
156156
LIB_DOC_DEP_$(1) = \
157157
$$(CRATEFILE_$(1)) \
158158
$$(RSINPUTS_$(1)) \

mk/grammar.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ $(BG)RustLexer.class: $(BG) $(SG)RustLexer.g4
4141

4242
check-build-lexer-verifier: $(BG)verify
4343

44-
ifndef NO_REBUILD
45-
VERIFY_DEPS := rustc-stage2-H-$(CFG_BUILD) $(LD)stamp.rustc
44+
ifeq ($(NO_REBUILD),)
45+
VERIFY_DEPS := rustc-stage2-H-$(CFG_BUILD) $(LD)stamp.rustc
4646
else
4747
VERIFY_DEPS :=
4848
endif

mk/host.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# $(5) - the name of the crate being processed
1919
define CP_HOST_STAGE_N_CRATE
2020

21-
ifndef ONLY_RLIB_$(5)
21+
ifeq ($$(ONLY_RLIB_$(5)),)
2222
$$(HLIB$(2)_H_$(4))/stamp.$(5): \
2323
$$(TLIB$(1)_T_$(3)_H_$(4))/stamp.$(5) \
2424
$$(RUST_DEPS_$(5):%=$$(HLIB$(2)_H_$(4))/stamp.%) \

mk/install.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ install-runtime-target-$(1)-cleanup:
121121
endef
122122

123123
$(foreach target,$(CFG_TARGET), \
124-
$(if $(findstring $(CFG_ADB_DEVICE_STATUS),true), \
124+
$(if $(findstring $(CFG_ADB_DEVICE_STATUS),"true"), \
125125
$(eval $(call INSTALL_RUNTIME_TARGET_N,$(taget),$(CFG_BUILD))) \
126126
$(eval $(call INSTALL_RUNTIME_TARGET_CLEANUP_N,$(target))) \
127127
))

mk/llvm.mk

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ $$(LLVM_STAMP_$(1)): $$(S)src/rustllvm/llvm-auto-clean-trigger
7171
@$$(call E, make: done cleaning llvm)
7272
touch -r $$@.start_time $$@ && rm $$@.start_time
7373

74-
ifdef CFG_ENABLE_LLVM_STATIC_STDCPP
74+
ifeq ($$(CFG_ENABLE_LLVM_STATIC_STDCPP),1)
7575
LLVM_STDCPP_RUSTFLAGS_$(1) = -L "$$(dir $$(shell $$(CC_$(1)) $$(CFG_GCCISH_CFLAGS_$(1)) \
7676
-print-file-name=lib$(CFG_STDCPP_NAME).a))"
7777
else
@@ -95,6 +95,9 @@ endef
9595
$(foreach host,$(CFG_HOST), \
9696
$(eval $(call DEF_LLVM_RULES,$(host))))
9797

98+
$(foreach host,$(CFG_HOST), \
99+
$(eval LLVM_CONFIGS := $(LLVM_CONFIGS) $(LLVM_CONFIG_$(host))))
100+
98101
# This can't be done in target.mk because it's included before this file.
99102
define LLVM_LINKAGE_DEPS
100103
$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.rustc_llvm: $$(LLVM_LINKAGE_PATH_$(2))

mk/main.mk

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ CFG_INFO := $(info cfg: version $(CFG_VERSION))
8686

8787
MKFILE_DEPS := config.stamp $(call rwildcard,$(CFG_SRC_DIR)mk/,*)
8888
MKFILES_FOR_TARBALL:=$(MKFILE_DEPS)
89-
ifdef NO_MKFILE_DEPS
89+
ifneq ($(NO_MKFILE_DEPS),)
9090
MKFILE_DEPS :=
9191
endif
9292
NON_BUILD_HOST = $(filter-out $(CFG_BUILD),$(CFG_HOST))
9393
NON_BUILD_TARGET = $(filter-out $(CFG_BUILD),$(CFG_TARGET))
9494

95-
ifdef MAKE_RESTARTS
95+
ifneq ($(MAKE_RESTARTS),)
9696
CFG_INFO := $(info cfg: make restarts: $(MAKE_RESTARTS))
9797
endif
9898

@@ -107,40 +107,28 @@ ifneq ($(wildcard $(NON_BUILD_TARGET)),)
107107
CFG_INFO := $(info cfg: non-build target triples $(NON_BUILD_TARGET))
108108
endif
109109

110-
CFG_RUSTC_FLAGS :=
111-
ifdef RUSTFLAGS
112-
CFG_RUSTC_FLAGS += $(RUSTFLAGS)
113-
endif
110+
CFG_RUSTC_FLAGS := $(RUSTFLAGS)
114111
CFG_GCCISH_CFLAGS :=
115112
CFG_GCCISH_LINK_FLAGS :=
116113

117114
CFG_JEMALLOC_FLAGS :=
118-
ifdef JEMALLOC_FLAGS
119-
CFG_JEMALLOC_FLAGS += $(JEMALLOC_FLAGS)
120-
endif
121115

122116
ifdef CFG_DISABLE_OPTIMIZE
123117
$(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))
118+
CFG_RUSTC_FLAGS +=
124119
CFG_JEMALLOC_FLAGS += --enable-debug
125120
else
126121
# The rtopt cfg turns off runtime sanity checks
127122
CFG_RUSTC_FLAGS += -O --cfg rtopt
128123
endif
129124

125+
CFG_JEMALLOC_FLAGS += $(JEMALLOC_FLAGS)
126+
130127
ifdef CFG_ENABLE_DEBUG_ASSERTIONS
131128
$(info cfg: enabling debug assertions (CFG_ENABLE_DEBUG_ASSERTIONS))
132129
CFG_RUSTC_FLAGS += -C debug-assertions=on
133130
endif
134131

135-
define DEF_RUSTFLAGS_STAGE
136-
RUSTFLAGS_STAGE$(1) :=
137-
endef
138-
139-
STAGES = 0 1 2 3
140-
141-
$(foreach stage,$(STAGES), \
142-
$(eval $(call DEF_RUSTFLAGS_STAGE,$(stage))))
143-
144132
ifdef CFG_ENABLE_DEBUGINFO
145133
$(info cfg: enabling debuginfo (CFG_ENABLE_DEBUGINFO))
146134
CFG_RUSTC_FLAGS += -g
@@ -198,9 +186,9 @@ endif
198186

199187

200188
ifndef CFG_DISABLE_VALGRIND_RPASS
201-
$(info cfg: enabling valgrind run-pass tests)
189+
$(info cfg: enabling valgrind run-pass tests (CFG_ENABLE_VALGRIND_RPASS))
202190
$(info cfg: valgrind-rpass command set to $(CFG_VALGRIND))
203-
CFG_VALGRIND_RPASS := $(CFG_VALGRIND)
191+
CFG_VALGRIND_RPASS :=$(CFG_VALGRIND)
204192
else
205193
$(info cfg: disabling valgrind run-pass tests)
206194
CFG_VALGRIND_RPASS :=
@@ -384,6 +372,8 @@ export CFG_BOOTSTRAP_KEY
384372
TRIPLE_TO_DEBUGGER_SCRIPT_SETTING=\
385373
$(if $(findstring windows,$(1)),none,$(if $(findstring darwin,$(1)),lldb,gdb))
386374

375+
STAGES = 0 1 2 3
376+
387377
define SREQ
388378
# $(1) is the stage number
389379
# $(2) is the target triple

mk/platform.mk

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,12 @@ AR := ar
8282
define SET_FROM_CFG
8383
ifdef CFG_$(1)
8484
ifeq ($(origin $(1)),undefined)
85-
$$(info cfg: using $(1)=$$(CFG_$(1)) (CFG_$(1)))
86-
$(1)=$$(CFG_$(1))
87-
else ifeq ($(origin $(1)),default)
88-
$$(info cfg: using $(1)=$$(CFG_$(1)) (CFG_$(1)))
89-
$(1)=$$(CFG_$(1))
85+
$$(info cfg: using $(1)=$(CFG_$(1)) (CFG_$(1)))
86+
$(1)=$(CFG_$(1))
87+
endif
88+
ifeq ($(origin $(1)),default)
89+
$$(info cfg: using $(1)=$(CFG_$(1)) (CFG_$(1)))
90+
$(1)=$(CFG_$(1))
9091
endif
9192
endif
9293
endef
@@ -100,9 +101,7 @@ include $(wildcard $(CFG_SRC_DIR)mk/cfg/*.mk)
100101

101102
define ADD_INSTALLED_OBJECTS
102103
INSTALLED_OBJECTS_$(1) += $$(CFG_INSTALLED_OBJECTS_$(1))
103-
ifdef CFG_THIRD_PARTY_OBJECTS_$(1)
104-
REQUIRED_OBJECTS_$(1) += $$(CFG_THIRD_PARTY_OBJECTS_$(1))
105-
endif
104+
REQUIRED_OBJECTS_$(1) += $$(CFG_THIRD_PARTY_OBJECTS_$(1))
106105
INSTALLED_OBJECTS_$(1) += $$(call CFG_STATIC_LIB_NAME_$(1),compiler-rt)
107106
REQUIRED_OBJECTS_$(1) += $$(call CFG_STATIC_LIB_NAME_$(1),compiler-rt)
108107
endef
@@ -164,15 +163,15 @@ define CFG_MAKE_TOOLCHAIN
164163
# Prepend the tools with their prefix if cross compiling
165164
ifneq ($(CFG_BUILD),$(1))
166165
ifneq ($$(findstring msvc,$(1)),msvc)
167-
CC_$(1)=$(CROSS_PREFIX_$(1))$(CC_$(1))
168-
CXX_$(1)=$(CROSS_PREFIX_$(1))$(CXX_$(1))
169-
CPP_$(1)=$(CROSS_PREFIX_$(1))$(CPP_$(1))
170-
AR_$(1)=$(CROSS_PREFIX_$(1))$(AR_$(1))
171-
LINK_$(1)=$(CROSS_PREFIX_$(1))$(LINK_$(1))
172-
RUSTC_CROSS_FLAGS_$(1)=-C linker=$$(call FIND_COMPILER,$$(LINK_$(1))) \
173-
-C ar=$$(call FIND_COMPILER,$$(AR_$(1))) $(RUSTC_CROSS_FLAGS_$(1))
174-
175-
RUSTC_FLAGS_$(1)=$$(RUSTC_CROSS_FLAGS_$(1)) $(RUSTC_FLAGS_$(1))
166+
CC_$(1)=$(CROSS_PREFIX_$(1))$(CC_$(1))
167+
CXX_$(1)=$(CROSS_PREFIX_$(1))$(CXX_$(1))
168+
CPP_$(1)=$(CROSS_PREFIX_$(1))$(CPP_$(1))
169+
AR_$(1)=$(CROSS_PREFIX_$(1))$(AR_$(1))
170+
LINK_$(1)=$(CROSS_PREFIX_$(1))$(LINK_$(1))
171+
RUSTC_CROSS_FLAGS_$(1)=-C linker=$$(call FIND_COMPILER,$$(LINK_$(1))) \
172+
-C ar=$$(call FIND_COMPILER,$$(AR_$(1))) $(RUSTC_CROSS_FLAGS_$(1))
173+
174+
RUSTC_FLAGS_$(1)=$$(RUSTC_CROSS_FLAGS_$(1)) $(RUSTC_FLAGS_$(1))
176175
endif
177176
endif
178177

mk/rt.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ $$(RT_OUTPUT_DIR_$(1))/$$(NATIVE_$(2)_$(1)): $$(OBJS_$(2)_$(1))
107107

108108
endef
109109

110+
$(foreach target,$(CFG_TARGET), \
111+
$(eval $(call RUNTIME_RULES,$(target))))
110112
$(foreach lib,$(NATIVE_LIBS), \
111113
$(foreach target,$(CFG_TARGET), \
112114
$(eval $(call THIRD_PARTY_LIB,$(target),$(lib)))))
@@ -169,7 +171,7 @@ endif
169171

170172
# See #17183 for details, this file is touched during the build process so we
171173
# don't want to consider it as a dependency.
172-
JEMALLOC_DEPS := $(filter-out $(S)src/jemalloc/VERSION,$$(JEMALLOC_DEPS))
174+
JEMALLOC_DEPS := $(filter-out $(S)src/jemalloc/VERSION,$(JEMALLOC_DEPS))
173175

174176
JEMALLOC_NAME_$(1) := $$(call CFG_STATIC_LIB_NAME_$(1),jemalloc)
175177
ifeq ($$(CFG_WINDOWSY_$(1)),1)

mk/target.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ define TARGET_RUSTRT_STARTUP_OBJ
138138
$$(TLIB$(1)_T_$(2)_H_$(3))/$(4).o: \
139139
$(S)src/rtstartup/$(4).rs \
140140
$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.core \
141-
$$(HSREQ$(1)_H_$(3)) \
141+
$$(HSREQ$(1)_T_$(2)_H_$(3)) \
142142
| $$(TBIN$(1)_T_$(2)_H_$(3))/
143143
@$$(call E, rustc: $$@)
144144
$$(STAGE$(1)_T_$(2)_H_$(3)) --emit=obj -o $$@ $$<
145145

146-
ifdef CFG_RUSTRT_HAS_STARTUP_OBJS_$(2)
146+
ifeq ($$(CFG_RUSTRT_HAS_STARTUP_OBJS_$(2)), 1)
147147
# Add dependencies on Rust startup objects to all crates that depend on core.
148148
# This ensures that they are built after core (since they depend on it),
149149
# but before everything else (since they are needed for linking dylib crates).

mk/tests.mk

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ TEST_CRATES = $(TEST_TARGET_CRATES) $(TEST_HOST_CRATES)
3636
# Environment configuration
3737
######################################################################
3838

39-
TESTARGS :=
40-
4139
# The arguments to all test runners
4240
ifdef TESTNAME
4341
TESTARGS += $(TESTNAME)
@@ -50,8 +48,6 @@ endif
5048
# Arguments to the cfail/rfail/rpass tests
5149
ifdef CFG_VALGRIND
5250
CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
53-
else
54-
CTEST_RUNTOOL =
5551
endif
5652

5753
CTEST_TESTARGS := $(TESTARGS)
@@ -147,11 +143,10 @@ else
147143
CFG_ADB_TEST_DIR=
148144
endif
149145

150-
DOC_NAMES :=
151146
# $(1) - name of doc test
152147
# $(2) - file of the test
153148
define DOCTEST
154-
DOC_NAMES += $(1)
149+
DOC_NAMES := $$(DOC_NAMES) $(1)
155150
DOCFILE_$(1) := $(2)
156151
endef
157152

@@ -367,7 +362,7 @@ define TEST_RUNNER
367362
# If NO_REBUILD is set then break the dependencies on everything but
368363
# the source files so we can test crates without rebuilding any of the
369364
# parent crates.
370-
ifndef NO_REBUILD
365+
ifeq ($(NO_REBUILD),)
371366
TESTDEP_$(1)_$(2)_$(3)_$(4) = $$(SREQ$(1)_T_$(2)_H_$(3)) \
372367
$$(foreach crate,$$(TARGET_CRATES), \
373368
$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(crate)) \
@@ -452,7 +447,7 @@ $(foreach host,$(CFG_HOST), \
452447
$(if $(findstring $(target),$(CFG_BUILD)), \
453448
$(eval $(call DEF_TEST_CRATE_RULES,$(stage),$(target),$(host),$(crate))), \
454449
$(if $(findstring android, $(target)), \
455-
$(if $(findstring $(CFG_ADB_DEVICE_STATUS),true), \
450+
$(if $(findstring $(CFG_ADB_DEVICE_STATUS),"true"), \
456451
$(eval $(call DEF_TEST_CRATE_RULES_android,$(stage),$(target),$(host),$(crate))), \
457452
$(eval $(call DEF_TEST_CRATE_RULES_null,$(stage),$(target),$(host),$(crate))) \
458453
), \
@@ -705,22 +700,22 @@ check-stage$(1)-T-$(2)-H-$(3)-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3),$(4
705700
# (Encoded as a separate variable because GNU make does not have a
706701
# good way to express OR on ifeq commands)
707702

708-
ifdef CTEST_DISABLE_$(4)
703+
ifneq ($$(CTEST_DISABLE_$(4)),)
709704
# Test suite is disabled for all configured targets.
710705
CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4) := $$(CTEST_DISABLE_$(4))
711706
else
712707
# else, check if non-self-hosted target (i.e. target not-in hosts) ...
713708
ifeq ($$(findstring $(2),$$(CFG_HOST)),)
714709
# ... if so, then check if this test suite is disabled for non-selfhosts.
715-
ifdef CTEST_DISABLE_NONSELFHOST_$(4)
710+
ifneq ($$(CTEST_DISABLE_NONSELFHOST_$(4)),)
716711
# Test suite is disabled for this target.
717712
CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4) := $$(CTEST_DISABLE_NONSELFHOST_$(4))
718713
endif
719714
endif
720715
# Neither DISABLE nor DISABLE_NONSELFHOST is set ==> okay, run the test.
721716
endif
722717

723-
ifndef CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4)
718+
ifeq ($$(CTEST_DONT_RUN_$(1)-T-$(2)-H-$(3)-$(4)),)
724719
$$(call TEST_OK_FILE,$(1),$(2),$(3),$(4)): \
725720
$$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
726721
$$(CTEST_DEPS_$(4)_$(1)-T-$(2)-H-$(3))
@@ -829,7 +824,7 @@ check-stage$(1)-T-$(2)-H-$(3)-doc-$(4)-exec: $$(call TEST_OK_FILE,$(1),$(2),$(3)
829824
# If NO_REBUILD is set then break the dependencies on everything but
830825
# the source files so we can test documentation without rebuilding
831826
# rustdoc etc.
832-
ifndef NO_REBUILD
827+
ifeq ($(NO_REBUILD),)
833828
DOCTESTDEP_$(1)_$(2)_$(3)_$(4) = \
834829
$$(DOCFILE_$(4)) \
835830
$$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
@@ -864,7 +859,7 @@ define DEF_CRATE_DOC_TEST
864859
# If NO_REBUILD is set then break the dependencies on everything but
865860
# the source files so we can test crate documentation without
866861
# rebuilding any of the parent crates.
867-
ifndef NO_REBUILD
862+
ifeq ($(NO_REBUILD),)
868863
CRATEDOCTESTDEP_$(1)_$(2)_$(3)_$(4) = \
869864
$$(TEST_SREQ$(1)_T_$(2)_H_$(3)) \
870865
$$(CRATE_FULLDEPS_$(1)_T_$(2)_H_$(3)_$(4)) \
@@ -927,7 +922,8 @@ TEST_GROUPS = \
927922
pretty-rpass-full \
928923
pretty-rfail-full \
929924
pretty-rfail \
930-
pretty-pretty
925+
pretty-pretty \
926+
$(NULL)
931927

932928
define DEF_CHECK_FOR_STAGE_AND_TARGET_AND_HOST
933929
check-stage$(1)-T-$(2)-H-$(3): check-stage$(1)-T-$(2)-H-$(3)-exec

0 commit comments

Comments
 (0)