We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cc
After fresh install of rustc 0.13.0-nightly (b87619e27 2014-11-02 23:27:10 +0000) on ubuntu 14.04 64 bit using rustup.sh i got
rustc 0.13.0-nightly (b87619e27 2014-11-02 23:27:10 +0000)
error: linking with `cc` failed: exit code: 1 note: cc '-m64' '-L' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib' '-o' 'regexp' 'regexp.o' '-Wl,--whole-archive' '-lmorestack' '-Wl,--no-whole-archive' '-nodefaultlibs' '-fno-lto' '-Wl,--gc-sections' '-pie' '-Wl,--as-needed' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/libnative-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/libsync-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustrt-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/librand-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcollections-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-4e7c5e5c.rlib' '/usr/local/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-4e7c5e5c.rlib' '-L' '/media/oleg/d1f39cd5-8da1-4386-9f5e-9edb3bd35c38/repository/bitbucket/log-parser/bench/rust/.rust' '-L' '/media/oleg/d1f39cd5-8da1-4386-9f5e-9edb3bd35c38/repository/bitbucket/log-parser/bench/rust' '-Wl,--whole-archive' '-Wl,-Bstatic' '-Wl,--no-whole-archive' '-Wl,-Bdynamic' '-ldl' '-lpthread' '-lgcc_s' '-lpthread' '-lc' '-lm' '-lcompiler-rt' note: /usr/bin/ld: cannot find Scrt1.o: No such file or directory /usr/bin/ld: cannot find crti.o: No such file or directory /usr/bin/ld: cannot find -ldl /usr/bin/ld: cannot find -lpthread /usr/bin/ld: cannot find -lpthread /usr/bin/ld: cannot find -lc /usr/bin/ld: cannot find -lm /usr/bin/ld: cannot find crtn.o: No such file or directory collect2: error: ld returned 1 exit status error: aborting due to previous error
installation of libc-dev solved the problem
libc-dev
The text was updated successfully, but these errors were encountered:
Yes, you need to have the development headers installed.
Sorry, something went wrong.
Also Linux, verified that libc-dev installation resolved the problem.
Updating gcc from 4:4.9 to 4:5.3 fixed this for me. Also Linux, but libc-dev was up to date.
Merge pull request rust-lang#18610 from Veykril/push-kynytqktmnxq
0267610
Add implict unsafety inlay hints for extern blocks
No branches or pull requests
After fresh install of
rustc 0.13.0-nightly (b87619e27 2014-11-02 23:27:10 +0000)
on ubuntu 14.04 64 bit using rustup.sh i gotinstallation of
libc-dev
solved the problemThe text was updated successfully, but these errors were encountered: