1RUST_VERSION ?= "${@d.getVar('PV').split('-')[0]}" 2 3SRC_URI += "https://static.rust-lang.org/dist/rustc-${RUST_VERSION}-src.tar.xz;name=rust \ 4 file://crossbeam_atomic.patch;patchdir=${RUSTSRC} \ 5 file://hardcodepaths.patch;patchdir=${RUSTSRC} \ 6 file://getrandom-open64.patch;patchdir=${RUSTSRC} \ 7 file://0001-Do-not-use-LFS64-on-linux-with-musl.patch;patchdir=${RUSTSRC} \ 8 file://zlib-off64_t.patch;patchdir=${RUSTSRC} \ 9" 10SRC_URI[rust.sha256sum] = "77e0615011f887d9533d5374bf9c15c590c3caf32bbb035b392d1c2ae502a682" 11 12RUSTSRC = "${WORKDIR}/rustc-${RUST_VERSION}-src" 13 14# Used by crossbeam_atomic.patch 15export TARGET_VENDOR 16 17UPSTREAM_CHECK_URI = "https://forge.rust-lang.org/infra/other-installation-methods.html" 18UPSTREAM_CHECK_REGEX = "rustc-(?P<pver>\d+(\.\d+)+)-src" 19 20# see recipes-devtools/gcc/gcc/0018-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch 21# we need to link with ssp_nonshared on musl to avoid "undefined reference to `__stack_chk_fail_local'" 22# when building MACHINE=qemux86 for musl 23WRAPPER_TARGET_EXTRALD:libc-musl = "-lssp_nonshared" 24