Create a common include that can be used by everything that depends on the Rust source. Including stage0 bits and hashes of the source tarballs.
42 lines
927 B
BlitzBasic
42 lines
927 B
BlitzBasic
SUMMARY = "Rust standard libaries"
|
|
HOMEPAGE = "http://www.rust-lang.org"
|
|
SECTION = "devel"
|
|
LICENSE = "MIT | Apache-2.0"
|
|
LIC_FILES_CHKSUM ="file://COPYRIGHT;md5=43e1f1fb9c0ee3af66693d8c4fecafa8"
|
|
|
|
SRC_URI = "\
|
|
https://static.rust-lang.org/dist/rustc-${PV}-src.tar.gz;name=rust \
|
|
"
|
|
|
|
require rust-source-${PV}.inc
|
|
|
|
S = "${WORKDIR}/rustc-${PV}"
|
|
|
|
CARGO_INDEX_COMMIT = "6127fc24b0b6fe73fe4d339817fbf000b9a798a2"
|
|
|
|
SRC_URI += "\
|
|
crate://crates.io/gcc/0.3.26 \
|
|
crate-index://crates.io/${CARGO_INDEX_COMMIT} \
|
|
"
|
|
|
|
DEPENDS += "compiler-rt (=${PV})"
|
|
|
|
RUSTLIB_DEP = ""
|
|
inherit cargo
|
|
|
|
# Needed so cargo can find libbacktrace
|
|
RUSTFLAGS += "-L ${STAGING_LIBDIR}"
|
|
|
|
S = "${WORKDIR}/rustc-${PV}"
|
|
|
|
do_compile_prepend () {
|
|
cd ${S}/src/rustc/std_shim
|
|
export CARGO_TARGET_DIR="${B}"
|
|
export RUSTC_BOOTSTRAP_KEY="${RS_KEY}"
|
|
}
|
|
|
|
do_install () {
|
|
mkdir -p ${D}${rustlibdir}
|
|
cp ${B}/${TARGET_SYS}/release/deps/* ${D}${rustlibdir}
|
|
}
|