2023-03-30 08:46:31 -05:00
|
|
|
# ignore-cross-compile
|
2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2019-09-29 20:17:27 -05:00
|
|
|
|
|
|
|
# Test mixing pathless --extern with paths.
|
|
|
|
|
|
|
|
all:
|
|
|
|
$(RUSTC) bar-static.rs --crate-name=bar --crate-type=rlib
|
|
|
|
$(RUSTC) bar-dynamic.rs --crate-name=bar --crate-type=dylib -C prefer-dynamic
|
|
|
|
# rlib preferred over dylib
|
|
|
|
$(RUSTC) foo.rs --extern bar
|
|
|
|
$(call RUN,foo) | $(CGREP) 'static'
|
|
|
|
$(RUSTC) foo.rs --extern bar=$(TMPDIR)/libbar.rlib --extern bar
|
|
|
|
$(call RUN,foo) | $(CGREP) 'static'
|
|
|
|
# explicit --extern overrides pathless
|
|
|
|
$(RUSTC) foo.rs --extern bar=$(call DYLIB,bar) --extern bar
|
|
|
|
$(call RUN,foo) | $(CGREP) 'dynamic'
|
|
|
|
# prefer-dynamic does what it says
|
|
|
|
$(RUSTC) foo.rs --extern bar -C prefer-dynamic
|
|
|
|
$(call RUN,foo) | $(CGREP) 'dynamic'
|