2023-03-30 07:58:50 -05:00
|
|
|
include ../tools.mk
|
2022-07-19 12:00:28 +03:00
|
|
|
|
|
|
|
all:
|
2023-11-29 02:13:58 -08:00
|
|
|
$(RUSTC) empty.rs -Z unstable-options -l static=l1 -l link-arg=a1 -l static=l2 -l link-arg=a2 -l dylib=d1 -l link-arg=a3 --print link-args | $(CGREP) -e 'l1.*a1.*l2.*a2.*d1.*a3'
|
|
|
|
$(RUSTC) attribute.rs --print link-args | $(CGREP) -e 'l1.*a1.*l2.*a2.*d1.*a3'
|