-
Notifications
You must be signed in to change notification settings - Fork 559
feat: support build and link dynamic library #1444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -532,8 +532,8 @@ fn gnu_apple_sysroot() { | |
| test.shim("fake-gcc") | ||
| .gcc() | ||
| .compiler("fake-gcc") | ||
| .target(&target) | ||
| .host(&target) | ||
| .target(target) | ||
| .host(target) | ||
| .file("foo.c") | ||
| .compile("foo"); | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Documentation on
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we actually want to support shared libraries, we should consider a Though if we allow using a raw linker (e.g. invoke
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (Which again is why I'm really not in favour of it). |
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.