2023-03-30 08:46:31 -05:00
|
|
|
# ignore-cross-compile
|
2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2014-07-01 10:37:54 -05:00
|
|
|
|
|
|
|
# Attempt to build this dependency tree:
|
|
|
|
#
|
|
|
|
# A.1 A.2
|
|
|
|
# |\ |
|
|
|
|
# | \ |
|
|
|
|
# B \ C
|
|
|
|
# \ | /
|
|
|
|
# \|/
|
|
|
|
# D
|
|
|
|
#
|
|
|
|
# Note that A.1 and A.2 are crates with the same name.
|
|
|
|
|
|
|
|
all:
|
|
|
|
$(RUSTC) -C metadata=1 -C extra-filename=-1 a.rs
|
|
|
|
$(RUSTC) -C metadata=2 -C extra-filename=-2 a.rs
|
|
|
|
$(RUSTC) b.rs --extern a=$(TMPDIR)/liba-1.rlib
|
|
|
|
$(RUSTC) c.rs --extern a=$(TMPDIR)/liba-2.rlib
|
2015-01-06 10:46:07 -06:00
|
|
|
@echo before
|
2014-07-01 10:37:54 -05:00
|
|
|
$(RUSTC) --cfg before d.rs --extern a=$(TMPDIR)/liba-1.rlib
|
|
|
|
$(call RUN,d)
|
2015-01-06 10:46:07 -06:00
|
|
|
@echo after
|
2014-07-01 10:37:54 -05:00
|
|
|
$(RUSTC) --cfg after d.rs --extern a=$(TMPDIR)/liba-1.rlib
|
|
|
|
$(call RUN,d)
|