-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rustc: Allow cdylibs to link against dylibs
Previously, rustc mandated that cdylibs could only link against rlibs as dependencies (not dylibs). This commit disables that restriction and tests that it works in a simple case.
- Loading branch information
Showing
8 changed files
with
66 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
include ../tools.mk | ||
|
||
TARGET_SYSROOT := $(shell $(RUSTC) --print sysroot)/lib/rustlib/$(TARGET)/lib | ||
|
||
ifdef IS_MSVC | ||
LIBSTD := $(wildcard $(TARGET_SYSROOT)/libstd-*.dll.lib) | ||
else | ||
LIBSTD := $(wildcard $(TARGET_SYSROOT)/$(call DYLIB_GLOB,std)) | ||
STD := $(basename $(patsubst lib%,%, $(notdir $(LIBSTD)))) | ||
endif | ||
|
||
all: $(call RUN_BINFILE,foo) | ||
$(call RUN,foo) | ||
|
||
ifdef IS_MSVC | ||
CLIBS := $(TMPDIR)/foo.dll.lib $(TMPDIR)/bar.dll.lib $(LIBSTD) | ||
$(call RUN_BINFILE,foo): $(call DYLIB,foo) | ||
$(CC) $(CFLAGS) foo.c $(CLIBS) $(call OUT_EXE,foo) | ||
else | ||
CLIBS := -lfoo -lbar -l$(STD) -L $(TMPDIR) -L $(TARGET_SYSROOT) | ||
$(call RUN_BINFILE,foo): $(call DYLIB,foo) | ||
$(CC) $(CFLAGS) foo.c $(CLIBS) -o $(call RUN_BINFILE,foo) | ||
endif | ||
|
||
$(call DYLIB,foo): | ||
$(RUSTC) -C prefer-dynamic bar.rs | ||
$(RUSTC) foo.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#![crate_type = "dylib"] | ||
|
||
pub fn bar() { | ||
println!("hello!"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#include <assert.h> | ||
|
||
extern void foo(); | ||
extern unsigned bar(unsigned a, unsigned b); | ||
|
||
int main() { | ||
foo(); | ||
assert(bar(1, 2) == 3); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#![crate_type = "cdylib"] | ||
|
||
extern crate bar; | ||
|
||
#[no_mangle] | ||
pub extern fn foo() { | ||
bar::bar(); | ||
} | ||
|
||
#[no_mangle] | ||
pub extern fn bar(a: u32, b: u32) -> u32 { | ||
a + b | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.