mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-04 03:42:56 +02:00
rust: update to 1.12.0.
Use self-built Rust for musl for bootstrapping for now.
This commit is contained in:
parent
2f0fef507e
commit
d5ca5aec77
5 changed files with 49 additions and 46 deletions
|
@ -2,8 +2,8 @@ From: Jakub Jirutka <jakub@jirutka.cz>
|
||||||
Date: Thu, 04 Aug 2016 17:53:00 +0200
|
Date: Thu, 04 Aug 2016 17:53:00 +0200
|
||||||
Subject: [PATCH] Do not require FileCheck
|
Subject: [PATCH] Do not require FileCheck
|
||||||
|
|
||||||
--- a/src/bootstrap/build/sanity.rs
|
--- a/src/bootstrap/sanity.rs
|
||||||
+++ b/src/bootstrap/build/sanity.rs
|
+++ b/src/bootstrap/sanity.rs
|
||||||
@@ -76,12 +76,6 @@
|
@@ -76,12 +76,6 @@
|
||||||
need_cmd(build.cxx(host).as_ref());
|
need_cmd(build.cxx(host).as_ref());
|
||||||
}
|
}
|
||||||
|
|
10
srcpkgs/rust/patches/link-llvm-static.patch
Normal file
10
srcpkgs/rust/patches/link-llvm-static.patch
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- rustc-1.12.0/src/librustc_llvm/build.rs.orig
|
||||||
|
+++ rustc-1.12.0/src/librustc_llvm/build.rs
|
||||||
|
@@ -128,6 +128,7 @@
|
||||||
|
// of llvm-config, not the target that we're attempting to link.
|
||||||
|
let mut cmd = Command::new(&llvm_config);
|
||||||
|
cmd.arg("--libs");
|
||||||
|
+ cmd.arg("--link-static");
|
||||||
|
if !is_crossed {
|
||||||
|
cmd.arg("--system-libs");
|
||||||
|
}
|
|
@ -7,14 +7,14 @@ Static linking of rustc on Alpine doesn't work yet.
|
||||||
This patch is ported from
|
This patch is ported from
|
||||||
https://gist.github.com/japaric/52b8816a4c86f5a4699bcc50ebc3e020.
|
https://gist.github.com/japaric/52b8816a4c86f5a4699bcc50ebc3e020.
|
||||||
|
|
||||||
--- a/src/bootstrap/build/sanity.rs
|
--- a/src/bootstrap/sanity.rs
|
||||||
+++ b/src/bootstrap/build/sanity.rs
|
+++ b/src/bootstrap/sanity.rs
|
||||||
@@ -97,26 +91,6 @@
|
@@ -97,26 +91,6 @@
|
||||||
panic!("the iOS target is only supported on OSX");
|
panic!("the iOS target is only supported on OSX");
|
||||||
}
|
}
|
||||||
|
|
||||||
- // Make sure musl-root is valid if specified
|
- // Make sure musl-root is valid if specified
|
||||||
- if target.contains("musl") && (target.contains("x86_64") || target.contains("i686")) {
|
- if target.contains("musl") && !target.contains("mips") {
|
||||||
- match build.config.musl_root {
|
- match build.config.musl_root {
|
||||||
- Some(ref root) => {
|
- Some(ref root) => {
|
||||||
- if fs::metadata(root.join("lib/libc.a")).is_err() {
|
- if fs::metadata(root.join("lib/libc.a")).is_err() {
|
||||||
|
@ -38,13 +38,11 @@ https://gist.github.com/japaric/52b8816a4c86f5a4699bcc50ebc3e020.
|
||||||
// Cygwin. The Cygwin build does not have generators for Visual
|
// Cygwin. The Cygwin build does not have generators for Visual
|
||||||
--- a/src/liblibc/src/unix/mod.rs
|
--- a/src/liblibc/src/unix/mod.rs
|
||||||
+++ b/src/liblibc/src/unix/mod.rs
|
+++ b/src/liblibc/src/unix/mod.rs
|
||||||
@@ -187,11 +187,6 @@
|
@@ -197,9 +197,6 @@
|
||||||
} else if #[cfg(all(not(stdbuild), feature = "use_std"))] {
|
} else if #[cfg(all(not(stdbuild), feature = "use_std"))] {
|
||||||
// cargo build, don't pull in anything extra as the libstd dep
|
// cargo build, don't pull in anything extra as the libstd dep
|
||||||
// already pulls in all libs.
|
// already pulls in all libs.
|
||||||
- } else if #[cfg(any(all(target_env = "musl", not(target_arch = "mips")),
|
- } else if #[cfg(any(all(target_env = "musl", not(target_arch = "mips"))))] {
|
||||||
- target_env = "musleabi",
|
|
||||||
- target_env = "musleabihf"))] {
|
|
||||||
- #[link(name = "c", kind = "static")]
|
- #[link(name = "c", kind = "static")]
|
||||||
- extern {}
|
- extern {}
|
||||||
} else if #[cfg(target_os = "emscripten")] {
|
} else if #[cfg(target_os = "emscripten")] {
|
||||||
|
@ -53,9 +51,9 @@ https://gist.github.com/japaric/52b8816a4c86f5a4699bcc50ebc3e020.
|
||||||
--- a/src/librustc_back/target/x86_64_unknown_linux_musl.rs
|
--- a/src/librustc_back/target/x86_64_unknown_linux_musl.rs
|
||||||
+++ b/src/librustc_back/target/x86_64_unknown_linux_musl.rs
|
+++ b/src/librustc_back/target/x86_64_unknown_linux_musl.rs
|
||||||
@@ -11,7 +11,7 @@
|
@@ -11,7 +11,7 @@
|
||||||
use target::Target;
|
use target::{Target, TargetResult};
|
||||||
|
|
||||||
pub fn target() -> Target {
|
pub fn target() -> TargetResult {
|
||||||
- let mut base = super::linux_musl_base::opts();
|
- let mut base = super::linux_musl_base::opts();
|
||||||
+ let mut base = super::linux_base::opts();
|
+ let mut base = super::linux_base::opts();
|
||||||
base.cpu = "x86-64".to_string();
|
base.cpu = "x86-64".to_string();
|
||||||
|
@ -67,7 +65,7 @@ https://gist.github.com/japaric/52b8816a4c86f5a4699bcc50ebc3e020.
|
||||||
let target = env::var("TARGET").unwrap();
|
let target = env::var("TARGET").unwrap();
|
||||||
|
|
||||||
if target.contains("linux") {
|
if target.contains("linux") {
|
||||||
- if target.contains("musl") && (target.contains("x86_64") || target.contains("i686")) {
|
- if target.contains("musl") && !target.contains("mips") {
|
||||||
- println!("cargo:rustc-link-lib=static=unwind");
|
- println!("cargo:rustc-link-lib=static=unwind");
|
||||||
- } else if !target.contains("android") {
|
- } else if !target.contains("android") {
|
||||||
+ if !target.contains("android") {
|
+ if !target.contains("android") {
|
||||||
|
|
|
@ -1,19 +1,9 @@
|
||||||
From: Jakub Jirutka <jakub@jirutka.cz>
|
--- rustc-1.12.0/src/librustc_llvm/lib.rs.orig
|
||||||
Date: Thu, 04 Aug 2016 17:53:00 +0200
|
+++ rustc-1.12.0/src/librustc_llvm/lib.rs
|
||||||
Subject: [PATCH] Workaround for external LLVM built with LLVM_ENABLE_FFI
|
@@ -481,3 +481,6 @@
|
||||||
|
mod llvmdeps {
|
||||||
Workaround for problem with LLVM_ENABLE_FFI described in
|
include! { env!("CFG_LLVM_LINKAGE_FILE") }
|
||||||
https://github.com/rust-lang/rust/issues/34486.
|
}
|
||||||
|
+
|
||||||
--- a/src/librustc_llvm/lib.rs
|
|
||||||
+++ b/src/librustc_llvm/lib.rs
|
|
||||||
@@ -577,6 +577,9 @@
|
|
||||||
#[cfg(not(cargobuild))]
|
|
||||||
extern {}
|
|
||||||
|
|
||||||
+#[link(name = "ffi")]
|
+#[link(name = "ffi")]
|
||||||
+extern {}
|
+extern {}
|
||||||
+
|
|
||||||
#[linked_from = "rustllvm"] // not quite true but good enough
|
|
||||||
extern {
|
|
||||||
/* Create and destroy contexts. */
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'rust'
|
# Template file for 'rust'
|
||||||
pkgname=rust
|
pkgname=rust
|
||||||
version=1.11.0
|
version=1.12.0
|
||||||
revision=1
|
revision=1
|
||||||
wrksrc="rustc-${version}"
|
wrksrc="rustc-${version}"
|
||||||
lib32disabled=yes
|
lib32disabled=yes
|
||||||
|
@ -15,27 +15,27 @@ maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||||
homepage="http://www.rust-lang.org/"
|
homepage="http://www.rust-lang.org/"
|
||||||
license="MIT, Apache-2.0"
|
license="MIT, Apache-2.0"
|
||||||
distfiles="https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz"
|
distfiles="https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz"
|
||||||
checksum=3685034a78e70637bdfa3117619f759f2481002fd9abbc78cc0f737c9974de6a
|
checksum=ac5907d6fa96c19bd5901d8d99383fb8755127571ead3d4070cce9c1fb5f337a
|
||||||
|
|
||||||
case "$XBPS_MACHINE" in
|
case "$XBPS_MACHINE" in
|
||||||
x86_64-musl)
|
x86_64-musl)
|
||||||
distfiles+="
|
distfiles+="
|
||||||
https://alpine.geeknet.cz/distfiles/rustc-1.10.0-x86_64-unknown-linux-musl.tar.gz
|
https://repo.voidlinux.eu/distfiles/rustc-1.11.0-x86_64-unknown-linux-musl.tar.gz
|
||||||
https://alpine.geeknet.cz/distfiles/rust-std-1.10.0-x86_64-unknown-linux-musl.tar.gz
|
https://repo.voidlinux.eu/distfiles/rust-std-1.11.0-x86_64-unknown-linux-musl.tar.gz
|
||||||
https://alpine.geeknet.cz/distfiles/cargo-0.11.0-nightly-x86_64-alpine-linux-musl.tar.gz"
|
https://alpine.geeknet.cz/distfiles/cargo-0.11.0-nightly-x86_64-alpine-linux-musl.tar.gz"
|
||||||
checksum+="
|
checksum+="
|
||||||
a7d8baacfa2225c923de28ecef2c9550c1d82cef3b90f6a1b8431359da7e7e69
|
6f1cfcab1760573f949265726951e9032f9f3ce8a202d727c1f84026341b8c33
|
||||||
335527615fc1a5f53d41c1d8556645bfe0b4f3a39f72ad859b392392066d9239
|
fbb6398b8537f9435d9c362f5e79be000df9df090d5d2bc6113c69bc050aa1fa
|
||||||
587172026c0565e839d96b0c1d4c68c000927817398241f96682dca47fa8c3b9"
|
587172026c0565e839d96b0c1d4c68c000927817398241f96682dca47fa8c3b9"
|
||||||
;;
|
;;
|
||||||
x86_64)
|
x86_64)
|
||||||
distfiles+="
|
distfiles+="
|
||||||
https://static.rust-lang.org/dist/2016-07-05/rustc-1.10.0-x86_64-unknown-linux-gnu.tar.gz
|
https://static.rust-lang.org/dist/2016-08-16/rustc-1.11.0-x86_64-unknown-linux-gnu.tar.gz
|
||||||
https://static.rust-lang.org/dist/2016-07-05/rust-std-1.10.0-x86_64-unknown-linux-gnu.tar.gz
|
https://static.rust-lang.org/dist/2016-08-16/rust-std-1.11.0-x86_64-unknown-linux-gnu.tar.gz
|
||||||
https://static.rust-lang.org/cargo-dist/2016-05-22/cargo-nightly-x86_64-unknown-linux-gnu.tar.gz"
|
https://static.rust-lang.org/cargo-dist/2016-07-05/cargo-nightly-x86_64-unknown-linux-gnu.tar.gz"
|
||||||
checksum+="
|
checksum+="
|
||||||
4301f9a09f2b88ac1238d886dfa14d864be7401f4d8a31277303eebe0c7a56c3
|
e9d27a72900da33c1bbd0e59dd42fd6414c6bcdfa33593fb7c7360068406394a
|
||||||
41b541148a2f595c6b6d5b26e1aabfc3c090fe45686bb272c13e20d4aba03c44
|
893a53b5f78ec9eb7ac4ad3b3bd375d2ddad8ca1687ed5867621ec157eddbea5
|
||||||
274df0e18ce91c53145df31ebb82c1886ce0e149fc27081210c85f37b2c05adf"
|
274df0e18ce91c53145df31ebb82c1886ce0e149fc27081210c85f37b2c05adf"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -53,6 +53,7 @@ post_extract() {
|
||||||
# but since we're basically rebuilding rustc with the same version,
|
# but since we're basically rebuilding rustc with the same version,
|
||||||
# it's actually safe.
|
# it's actually safe.
|
||||||
# Note: --enable-local-rebuild from #33787 didn't work, don't know why.
|
# Note: --enable-local-rebuild from #33787 didn't work, don't know why.
|
||||||
|
export LD_LIBRARY_PATH="$wrksrc/stage0/lib"
|
||||||
rustc_ver="$($wrksrc/stage0/bin/rustc --version | cut -f2 -d ' ')"
|
rustc_ver="$($wrksrc/stage0/bin/rustc --version | cut -f2 -d ' ')"
|
||||||
rustc_key="$(printf "$rustc_ver" | md5sum | cut -c1-8)"
|
rustc_key="$(printf "$rustc_ver" | md5sum | cut -c1-8)"
|
||||||
sed -Ei \
|
sed -Ei \
|
||||||
|
@ -67,10 +68,13 @@ post_extract() {
|
||||||
cargo = "$wrksrc/stage0/bin/cargo"
|
cargo = "$wrksrc/stage0/bin/cargo"
|
||||||
rustc = "$wrksrc/stage0/bin/rustc"
|
rustc = "$wrksrc/stage0/bin/rustc"
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
sed -i /LD_LIBRARY_PATH/d src/bootstrap/bootstrap.py
|
||||||
}
|
}
|
||||||
|
|
||||||
pre_build() {
|
pre_build() {
|
||||||
export CARGO_HOME="$wrksrc/.cargo"
|
export CARGO_HOME="$wrksrc/.cargo"
|
||||||
|
export LD_LIBRARY_PATH="$wrksrc/stage0/lib"
|
||||||
}
|
}
|
||||||
|
|
||||||
do_configure() {
|
do_configure() {
|
||||||
|
@ -81,6 +85,7 @@ do_configure() {
|
||||||
x86_64-musl) _triplet=x86_64-unknown-linux-musl;;
|
x86_64-musl) _triplet=x86_64-unknown-linux-musl;;
|
||||||
*) _triplet=$XBPS_TARGET_MACHINE;;
|
*) _triplet=$XBPS_TARGET_MACHINE;;
|
||||||
esac
|
esac
|
||||||
|
export LD_LIBRARY_PATH="$wrksrc/stage0/lib"
|
||||||
configure_args="
|
configure_args="
|
||||||
--prefix=/usr
|
--prefix=/usr
|
||||||
--host=${_triplet}
|
--host=${_triplet}
|
||||||
|
@ -102,8 +107,8 @@ do_configure() {
|
||||||
}
|
}
|
||||||
do_install() {
|
do_install() {
|
||||||
vmkdir usr
|
vmkdir usr
|
||||||
tar xf build/dist/rustc-*.tar.gz -C "$DESTDIR/usr" --strip-components=2 --exclude=manifest.in
|
tar xf build/dist/rustc-*-*-*.tar.gz -C "$DESTDIR/usr" --strip-components=2 --exclude=manifest.in
|
||||||
tar xf build/dist/rust-std-*.tar.gz -C "$DESTDIR/usr/lib" --strip-components=3 --exclude=manifest.in
|
tar xf build/dist/rust-std-*-*-*.tar.gz -C "$DESTDIR/usr/lib" --strip-components=3 --exclude=manifest.in
|
||||||
|
|
||||||
vlicense COPYRIGHT
|
vlicense COPYRIGHT
|
||||||
vlicense LICENSE-APACHE
|
vlicense LICENSE-APACHE
|
||||||
|
|
Loading…
Add table
Reference in a new issue