How can I specify linker flags/arguments in a build script?

可紊 提交于 2019-12-07 10:21:51

问题


I'm using Rust, bindgen, and a build script to work on some FFI bindings to a library.

This library is built using OpenMP, so when linking against it, I'd normally pass the -fopenmp flag to the compiler.

How can I get this flag to be set by build.rs when the library is built by Cargo?

Currently, building using Cargo fails, with the failing command being something like:

cc -Wl,--as-needed -Wl,-z,noexecstack -m64 -l gomp -l stdc++
...skipping dozens of paths/files...
 -Wl,-Bdynamic -l dl -l rt -l pthread -l gcc_s -l c -l m -l rt -l pthread -l util

which fails with hundreds of undefined reference to 'GOMP_parallel_end' errors.

Rerunning the generated command above with the -fopenmp flag manually added succeeds.

I can specify the flag using RUSTFLAGS='-C link-args=-fopenmp' before compiling, but is there a way of specifying it from within build.rs?


回答1:


You cannot. Instead, you can use a Cargo configuration file.

.cargo/config

[build]
rustflags = ["-C", "link-args=-fsome-artisanal-option"]

Execution

$ cargo build --verbose
   Compiling example v0.1.0 (file:///private/tmp/example)
     Running `rustc ...blah blah blah... -C link-args=-fsome-artisanal-option`
error: linking with `cc` failed: exit code: 1
  |
  = note: "cc" "-m64" ...blah blah blah... "-fsome-artisanal-option"
  = note: clang: error: unknown argument: '-fsome-artisanal-option'

See also:

  • How to get the linker to produce a map file using Cargo
  • How can I globally configure a Cargo profile option?
  • Is it possible to specify `panic = "abort"` for a specific target?


来源:https://stackoverflow.com/questions/50642574/how-can-i-specify-linker-flags-arguments-in-a-build-script

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!