2015-02-06 13:40:00 -08:00
|
|
|
-include ../tools.mk
|
|
|
|
|
2015-02-15 17:18:55 +09:00
|
|
|
ifneq ($(findstring BSD,$(UNAME)),BSD)
|
2015-02-06 13:40:00 -08:00
|
|
|
HOST := $(shell $(RUSTC) -vV | grep 'host:' | sed 's/host: //')
|
|
|
|
ifeq ($(findstring i686,$(HOST)),i686)
|
|
|
|
TARGET := $(subst i686,x86_64,$(HOST))
|
|
|
|
else
|
|
|
|
TARGET := $(subst x86_64,i686,$(HOST))
|
|
|
|
endif
|
|
|
|
|
|
|
|
all:
|
|
|
|
$(RUSTC) foo.rs -C extra-filename=-host
|
|
|
|
$(RUSTC) bar.rs -C extra-filename=-targ --target $(TARGET)
|
|
|
|
$(RUSTC) baz.rs --extern a=$(TMPDIR)/liba-targ.rlib --target $(TARGET)
|
2015-02-08 09:36:08 +01:00
|
|
|
else
|
2015-02-15 17:18:55 +09:00
|
|
|
# FreeBSD & OpenBSD support only x86_64 architecture for now
|
2015-02-08 09:36:08 +01:00
|
|
|
all:
|
|
|
|
endif
|