Skip to content
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

openbsd: doesn't use static as it could result duplicated symbols #249

Merged
merged 1 commit into from
Jul 16, 2018
Merged

Conversation

semarie
Copy link
Contributor

@semarie semarie commented Jul 16, 2018

I found using static here could result in problem for librsvg building.

librsvg first generates a static library with Rust code, and next mix objects from C code and Rust code to make a dynamic library.

when using static, the resulting rlib contains:

  • all symbols from compiler-builtins Rust code
  • all symbols from libcompiler_rt.a

and so, duplicated symbols.

It isn't a problem when linking dylib or binary: the linker will keep only the first resolved symbol. But the way librsvg build makes the linker to see the duplicated symbols.

Without static, the generated rlib contains:

  • all symbols from compiler-builtins Rust code
  • only others symbols from libcompiler_rt.a (OpenBSD doesn't provide dynamic library for compiler_rt)

I have backported the PR on OpenBSD ports tree and use without problem for the following program/library: rustc/cargo, firefox, ripgrep, exa, librsvg

@alexcrichton alexcrichton merged commit ec413b2 into rust-lang:master Jul 16, 2018
@semarie semarie deleted the openbsd branch July 16, 2018 14:02
bors added a commit to rust-lang/rust that referenced this pull request Jul 18, 2018
update compiler-builtins for openbsd

import rust-lang/compiler-builtins/pull/249 in rust main line.

it solves an issue on OpenBSD with building of `librsvg`.
tgross35 pushed a commit to tgross35/compiler-builtins that referenced this pull request Feb 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants