Skip to content

Commit 3328913

Browse files
committed
Auto merge of #109770 - jyn514:run-make-fulldeps, r=Mark-Simulacrum
Move almost all run-make-fulldeps tests to run-make They pass fine, and this avoids having to build the compiler twice. There are few enough tests left that I think it should be possible to get rid of this test suite altogether, but I expect this PR to fail at least a few times in bors and want to get it merged before tackling further changes. cc #83775 Fixes #66085. Fixes #83773.
2 parents a93bcdc + c45037b commit 3328913

File tree

774 files changed

+226
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

774 files changed

+226
-95
lines changed

tests/run-make-fulldeps/hotplug_codegen_backend/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../tools.mk
1+
include ../../run-make/tools.mk
22

33
# ignore-stage1
44

tests/run-make-fulldeps/issue-19371/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../tools.mk
1+
include ../../run-make/tools.mk
22

33
# This test ensures that rustc compile_input can be called twice in one task
44
# without causing a panic.

tests/run-make-fulldeps/issue-25581/Makefile

-5
This file was deleted.

tests/run-make-fulldeps/obtain-borrowck/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../tools.mk
1+
include ../../run-make/tools.mk
22

33
# This example shows how to implement a rustc driver that retrieves MIR bodies
44
# together with the borrow checker information.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../tools.mk
1+
include ../../run-make/tools.mk
22

33
all:
44
$(RUSTC) -o $(TMPDIR)/input.expanded.rs -Zunpretty=expanded input.rs

tests/run-make-fulldeps/a-b-a-linker-guard/Makefile tests/run-make/a-b-a-linker-guard/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# Test that if we build `b` against a version of `a` that has one set

tests/run-make-fulldeps/allow-non-lint-warnings-cmdline/Makefile tests/run-make/allow-non-lint-warnings-cmdline/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# Test that -A warnings makes the 'empty trait list for derive' warning go away

tests/run-make-fulldeps/allow-warnings-cmdline-stability/Makefile tests/run-make/allow-warnings-cmdline-stability/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# Test that -A warnings makes the 'empty trait list for derive' warning go away

tests/run-make-fulldeps/archive-duplicate-names/Makefile tests/run-make/archive-duplicate-names/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/arguments-non-c-like-enum/Makefile tests/run-make/arguments-non-c-like-enum/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/bare-outfile/Makefile tests/run-make/bare-outfile/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:
File renamed without changes.

tests/run-make-fulldeps/c-dynamic-dylib/Makefile tests/run-make/c-dynamic-dylib/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# ignore-macos

tests/run-make-fulldeps/c-dynamic-rlib/Makefile tests/run-make/c-dynamic-rlib/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# ignore-macos

tests/run-make-fulldeps/c-link-to-rust-dylib/Makefile tests/run-make/c-link-to-rust-dylib/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(TMPDIR)/$(call BIN,bar)

tests/run-make-fulldeps/c-link-to-rust-staticlib/Makefile tests/run-make/c-link-to-rust-staticlib/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# ignore-freebsd

tests/run-make-fulldeps/c-link-to-rust-va-list-fn/Makefile tests/run-make/c-link-to-rust-va-list-fn/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/c-static-dylib/Makefile tests/run-make/c-static-dylib/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,cfoo)

tests/run-make-fulldeps/c-static-rlib/Makefile tests/run-make/c-static-rlib/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,cfoo)

tests/run-make-fulldeps/c-unwind-abi-catch-lib-panic/Makefile tests/run-make/c-unwind-abi-catch-lib-panic/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: archive

tests/run-make-fulldeps/c-unwind-abi-catch-panic/Makefile tests/run-make/c-unwind-abi-catch-panic/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,add)

tests/run-make-fulldeps/cdylib-dylib-linkage/Makefile tests/run-make/cdylib-dylib-linkage/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
TARGET_SYSROOT := $(shell $(RUSTC) --print sysroot)/lib/rustlib/$(TARGET)/lib

tests/run-make-fulldeps/cdylib-fewer-symbols/Makefile tests/run-make/cdylib-fewer-symbols/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
# Test that allocator-related symbols don't show up as exported from a cdylib as
23
# they're internal to Rust and not part of the public ABI.
34

tests/run-make-fulldeps/cdylib/Makefile tests/run-make/cdylib/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call RUN_BINFILE,foo)
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/run-make-fulldeps/codegen-options-parsing/Makefile tests/run-make/codegen-options-parsing/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/compile-stdin/Makefile tests/run-make/compile-stdin/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/compiler-lookup-paths/Makefile tests/run-make/compiler-lookup-paths/Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
include ../tools.mk
22

3+
# ignore-wasm32 (need a C compiler)
4+
# ignore-wasm64 (need a C compiler)
5+
36
all: $(TMPDIR)/libnative.a
47
mkdir -p $(TMPDIR)/crate
58
mkdir -p $(TMPDIR)/native

tests/run-make/const_fn_mir/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
all:
44
$(RUSTC) main.rs --emit=mir -o "$(TMPDIR)"/dump.mir

tests/run-make/coverage/coverage_tools.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
#
44
# include ../coverage/coverage_tools.mk
55

6-
include ../../run-make-fulldeps/tools.mk
6+
include ../tools.mk

tests/run-make-fulldeps/crate-hash-rustc-version/Makefile tests/run-make/crate-hash-rustc-version/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
# ignore-cross-compile
2+
include ../tools.mk
23

34
# Ensure that crates compiled with different rustc versions cannot
45
# be dynamically linked.

tests/run-make-fulldeps/crate-name-priority/Makefile tests/run-make/crate-name-priority/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/debug-assertions/Makefile tests/run-make/debug-assertions/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make/dep-graph/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
# ignore-cross-compile
44

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/run-make-fulldeps/doctests-keep-binaries/Makefile tests/run-make/doctests-keep-binaries/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
# ignore-cross-compile
2+
include ../tools.mk
23

34
# Check that valid binaries are persisted by running them, regardless of whether the --run or --no-run option is used.
45

tests/run-make/dump-mono-stats/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
all:
44
$(RUSTC) --crate-type lib foo.rs -Z dump-mono-stats=$(TMPDIR) -Zdump-mono-stats-format=json

tests/run-make-fulldeps/dylib-chain/Makefile tests/run-make/dylib-chain/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/run-make/emit-named-files/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
OUT=$(TMPDIR)/emit
44

tests/run-make/emit-path-unhashed/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
OUT=$(TMPDIR)/emit
44

tests/run-make/emit-shared-files/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
INVOCATION_ONLY = $(TMPDIR)/invocation-only
44
TOOLCHAIN_ONLY = $(TMPDIR)/toolchain-only

tests/run-make-fulldeps/emit/Makefile tests/run-make/emit/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:
File renamed without changes.
File renamed without changes.

tests/run-make/env-dep-info/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
# FIXME(eddyb) provide `HOST_RUSTC` and `TARGET_RUSTC`
44
# instead of hardcoding them everywhere they're needed.

tests/run-make-fulldeps/exit-code/Makefile tests/run-make/exit-code/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make/export-executable-symbols/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
# ignore-wasm32
44
# ignore-wasm64

tests/run-make-fulldeps/extern-diff-internal-name/Makefile tests/run-make/extern-diff-internal-name/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/extern-flag-disambiguates/Makefile tests/run-make/extern-flag-disambiguates/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# Attempt to build this dependency tree:

tests/run-make-fulldeps/extern-flag-fun/Makefile tests/run-make/extern-flag-fun/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/extern-flag-pathless/Makefile tests/run-make/extern-flag-pathless/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# Test mixing pathless --extern with paths.

tests/run-make-fulldeps/extern-fn-generic/Makefile tests/run-make/extern-fn-generic/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,test)

tests/run-make-fulldeps/extern-fn-mangle/Makefile tests/run-make/extern-fn-mangle/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,test)

tests/run-make-fulldeps/extern-fn-reachable/Makefile tests/run-make/extern-fn-reachable/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# ignore-windows-msvc

tests/run-make-fulldeps/extern-fn-struct-passing-abi/Makefile tests/run-make/extern-fn-struct-passing-abi/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,test)

tests/run-make-fulldeps/extern-fn-with-extern-types/Makefile tests/run-make/extern-fn-with-extern-types/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,ctest)

tests/run-make-fulldeps/extern-fn-with-packed-struct/Makefile tests/run-make/extern-fn-with-packed-struct/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,test)

tests/run-make-fulldeps/extern-fn-with-union/Makefile tests/run-make/extern-fn-with-union/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,ctest)

tests/run-make-fulldeps/extern-multiple-copies/Makefile tests/run-make/extern-multiple-copies/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/extern-multiple-copies2/Makefile tests/run-make/extern-multiple-copies2/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/extern-overrides-distribution/Makefile tests/run-make/extern-overrides-distribution/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make-fulldeps/extra-filename-with-temp-outputs/Makefile tests/run-make/extra-filename-with-temp-outputs/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all:

tests/run-make/fmt-write-bloat/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
# ignore-windows
44

tests/run-make-fulldeps/foreign-double-unwind/Makefile tests/run-make/foreign-double-unwind/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: foo

tests/run-make-fulldeps/foreign-exceptions/Makefile tests/run-make/foreign-exceptions/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: foo

tests/run-make-fulldeps/foreign-rust-exceptions/Makefile tests/run-make/foreign-rust-exceptions/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
# ignore-i686-pc-windows-gnu
23

34
# This test doesn't work on 32-bit MinGW as cdylib has its own copy of unwinder

tests/run-make-fulldeps/fpic/Makefile tests/run-make/fpic/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# ignore-windows
File renamed without changes.

tests/run-make-fulldeps/glibc-staticlib-args/Makefile tests/run-make/glibc-staticlib-args/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
# only-gnu
23
# only-linux
34

File renamed without changes.
File renamed without changes.

tests/run-make-fulldeps/incr-add-rust-src-component/Makefile tests/run-make/incr-add-rust-src-component/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# rust-lang/rust#70924: Test that if we add rust-src component in between two

tests/run-make/incr-foreign-head-span/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
# ignore-none no-std is not supported
44
# ignore-nvptx64-nvidia-cuda FIXME: can't find crate for 'std'

tests/run-make/incr-prev-body-beyond-eof/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ignore-none no-std is not supported
22
# ignore-nvptx64-nvidia-cuda FIXME: can't find crate for `std`
33

4-
include ../../run-make-fulldeps/tools.mk
4+
include ../tools.mk
55

66
# Tests that we don't ICE during incremental compilation after modifying a
77
# function span such that its previous end line exceeds the number of lines

tests/run-make/incremental-session-fail/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
SESSION_DIR := $(TMPDIR)/session
44
OUTPUT_FILE := $(TMPDIR)/build-output

tests/run-make-fulldeps/interdependent-c-libraries/Makefile tests/run-make/interdependent-c-libraries/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
# The rust crate foo will link to the native library foo, while the rust crate

tests/run-make/invalid-so/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
DYLIB_NAME := $(shell echo | $(RUSTC) --crate-name foo --crate-type dylib --print file-names -)
44

tests/run-make/issue-10971-temps-dir/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include ../../run-make-fulldeps/tools.mk
1+
include ../tools.mk
22

33
# Regression test for issue #10971
44
# Running two invocations in parallel would overwrite each other's temp files.

tests/run-make-fulldeps/issue-11908/Makefile tests/run-make/issue-11908/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
# This test ensures that if you have the same rlib or dylib at two locations
23
# in the same path that you don't hit an assertion in the compiler.
34
#
File renamed without changes.
File renamed without changes.

tests/run-make-fulldeps/issue-14500/Makefile tests/run-make/issue-14500/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
include ../tools.mk
22

3+
# ignore-cross-compile
4+
35
# Test to make sure that reachable extern fns are always available in final
46
# productcs, including when LTO is used. In this test, the `foo` crate has a
57
# reahable symbol, and is a dependency of the `bar` crate. When the `bar` crate
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/run-make-fulldeps/issue-15460/Makefile tests/run-make/issue-15460/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ignore-cross-compile
12
include ../tools.mk
23

34
all: $(call NATIVE_STATICLIB,foo)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)