We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b331c6 commit 1f28bc6Copy full SHA for 1f28bc6
src/test/run-make-fulldeps/use-extern-for-plugins/Makefile
@@ -4,12 +4,7 @@
4
# ignore-openbsd
5
# ignore-sunos
6
7
-HOST := $(shell $(RUSTC) -vV | grep 'host:' | sed 's/host: //')
8
-ifeq ($(findstring i686,$(HOST)),i686)
9
-TARGET := $(subst i686,x86_64,$(HOST))
10
-else
11
-TARGET := $(subst x86_64,i686,$(HOST))
12
-endif
+TARGET := $(shell $(RUSTC) -vV | grep 'host:' | sed 's/host: //')
13
14
all:
15
$(RUSTC) foo.rs -C extra-filename=-host
0 commit comments