]> git.lizzy.rs Git - rust.git/commit
Fix link error by explicitly link needed DSOs
authorHaitao Li <lihaitao@gmail.com>
Sun, 16 Oct 2011 09:02:06 +0000 (17:02 +0800)
committerHaitao Li <lihaitao@gmail.com>
Sun, 16 Oct 2011 09:12:30 +0000 (17:12 +0800)
commitad5014bf4c81fdfd6c382d2f2df1e9f824787dde
tree3b05061d87aa5a22578347f8d15d11b353ab1689
parent280bc5633d77b91253b0a0d60c78b9afdbcb59e5
Fix link error by explicitly link needed DSOs

Building Rust(version 280bc56) on Ubuntu 11.10 failed with link error,
like:

compile_and_link: stage0/lib/rustc/i686-unknown-linux-gnu/lib/libstd.so
compile_and_link: stage0/lib/rustc/i686-unknown-linux-gnu/bin/rustc
/local/src/rust/build/stage0/lib/rustc/i686-unknown-linux-gnu/lib/librustrt.so:
undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
error: linking with gcc failed with code 1

GCC toolchain released by Ubuntu 11.10 introduced a few compiler flags
that are different with upstream GCC[1]. Flags "-Wl,--as-needed' and
'-Wl,--no-copy-dt-needed-entries' are passed by default.

Function clock_gettime from librt is used by librustrt, indirectly by
rustc. It is necessary to explicitly pass the "-lrt" flags when building
rustc.

Please note since the toolchain changes will be the default in the next
release(2.22) of binutils, this is not actually a Debian/Ubuntu specific
issue.

1. https://wiki.ubuntu.com/OneiricOcelot/ReleaseNotes#GCC_4.6_Toolchain

Signed-off-by: Haitao Li <lihaitao@gmail.com>
src/comp/back/link.rs