We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b9b753 commit 0ba6e46Copy full SHA for 0ba6e46
tests/run-make/use-extern-for-plugins/Makefile
@@ -4,12 +4,7 @@ include ../tools.mk
4
# ignore-openbsd
5
# ignore-solaris
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