mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
e084afde80
Hello71 spotted this first.
11 lines
353 B
Bash
11 lines
353 B
Bash
#!/bin/sh
|
|
#
|
|
# A linker script used when building Rust tests. Autoconf makes link_rust.sh
|
|
# from link_rust_sh.in, and uses it to pass extra options to the linker
|
|
# when linking Rust stuff.
|
|
#
|
|
# We'd like to remove the need for this, but build.rs doesn't let us pass
|
|
# -static-libasan and -static-libubsan to the linker.
|
|
|
|
$CCLD @RUST_LINKER_OPTIONS@ "$@"
|