2021-03-08 14:42:54 -06:00
|
|
|
# Test the behavior of #[link(.., kind = "raw-dylib")] on windows-msvc
|
|
|
|
|
2021-11-01 17:49:58 -05:00
|
|
|
# only-windows
|
2021-03-08 14:42:54 -06:00
|
|
|
|
2023-03-30 07:58:50 -05:00
|
|
|
include ../tools.mk
|
2021-03-08 14:42:54 -06:00
|
|
|
|
|
|
|
all:
|
2022-07-01 15:01:41 -05:00
|
|
|
$(RUSTC) --crate-type lib --crate-name raw_dylib_test lib.rs
|
|
|
|
$(RUSTC) --crate-type bin driver.rs -L "$(TMPDIR)"
|
|
|
|
$(RUSTC) --crate-type bin --crate-name raw_dylib_test_bin lib.rs
|
2021-03-08 14:42:54 -06:00
|
|
|
$(call COMPILE_OBJ,"$(TMPDIR)"/extern_1.obj,extern_1.c)
|
|
|
|
$(call COMPILE_OBJ,"$(TMPDIR)"/extern_2.obj,extern_2.c)
|
2021-11-01 17:49:58 -05:00
|
|
|
ifdef IS_MSVC
|
2022-07-01 15:01:41 -05:00
|
|
|
$(CC) "$(TMPDIR)"/extern_1.obj -link -dll -out:"$(TMPDIR)"/extern_1.dll -noimplib
|
|
|
|
$(CC) "$(TMPDIR)"/extern_2.obj -link -dll -out:"$(TMPDIR)"/extern_2.dll -noimplib
|
2021-11-01 17:49:58 -05:00
|
|
|
else
|
|
|
|
$(CC) "$(TMPDIR)"/extern_1.obj -shared -o "$(TMPDIR)"/extern_1.dll
|
|
|
|
$(CC) "$(TMPDIR)"/extern_2.obj -shared -o "$(TMPDIR)"/extern_2.dll
|
|
|
|
endif
|
2021-03-08 14:42:54 -06:00
|
|
|
"$(TMPDIR)"/driver > "$(TMPDIR)"/output.txt
|
2022-07-01 15:01:41 -05:00
|
|
|
"$(TMPDIR)"/raw_dylib_test_bin > "$(TMPDIR)"/output_bin.txt
|
2021-03-08 14:42:54 -06:00
|
|
|
|
|
|
|
ifdef RUSTC_BLESS_TEST
|
|
|
|
cp "$(TMPDIR)"/output.txt output.txt
|
|
|
|
else
|
|
|
|
$(DIFF) output.txt "$(TMPDIR)"/output.txt
|
2022-07-01 15:01:41 -05:00
|
|
|
$(DIFF) output.txt "$(TMPDIR)"/output_bin.txt
|
2021-03-08 14:42:54 -06:00
|
|
|
endif
|