fix wrong includes

This commit is contained in:
Joshua Nelson 2023-03-30 07:43:59 -05:00
parent 433da1fc04
commit 06b2d4b4ab
7 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
-include ../tools.mk
include ../../run-make-fulldeps/tools.mk
# ignore-msvc

View File

@ -1,6 +1,6 @@
# only-macos
-include ../../run-make-fulldeps/tools.mk
include ../../run-make-fulldeps/tools.mk
"$(TMPDIR)"/libnative-library.a: native-library.c
$(CC) -arch arm64 -arch x86_64 native-library.c -c -o "$(TMPDIR)"/native-library.o

View File

@ -1,4 +1,4 @@
-include ../tools.mk
include ../../run-make-fulldeps/tools.mk
all:
$(RUSTC) --print calling-conventions

View File

@ -3,7 +3,7 @@
# only-x86
# only-windows
-include ../../run-make-fulldeps/tools.mk
include ../../run-make-fulldeps/tools.mk
all:
$(RUSTC) --crate-type bin driver.rs -L "$(TMPDIR)"

View File

@ -1,4 +1,4 @@
-include ../../run-make-fulldeps/tools.mk
include ../../run-make-fulldeps/tools.mk
# ignore-cross-compile

View File

@ -1,4 +1,4 @@
-include ../../run-make-fulldeps/tools.mk
include ../../run-make-fulldeps/tools.mk
# ignore-cross-compile
# only-linux

View File

@ -1,7 +1,7 @@
# needs-profiler-support
# ignore-windows-gnu
-include ../../run-make-fulldeps/tools.mk
include ../../run-make-fulldeps/tools.mk
# FIXME(eddyb) provide `HOST_RUSTC` and `TARGET_RUSTC`
# instead of hardcoding them everywhere they're needed.