blob: b25b5c17e880edf2a2356a94c95b16cde9a0ae76 [file] [log] [blame]
Andrew Geissler517393d2023-01-13 08:55:19 -06001RUST_VERSION ?= "${@d.getVar('PV').split('-')[0]}"
Patrick Williams92b42cb2022-09-03 06:53:57 -05002
Andrew Geissler517393d2023-01-13 08:55:19 -06003SRC_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} \
Patrick Williams8e7b46e2023-05-01 14:19:06 -05009 file://0001-musl-Define-SOCK_SEQPACKET-in-common-place.patch;patchdir=${RUSTSRC} \
Andrew Geissler517393d2023-01-13 08:55:19 -060010"
Patrick Williams8e7b46e2023-05-01 14:19:06 -050011SRC_URI[rust.sha256sum] = "ce1a115f6aafa912b4622906a92b626354973afa9288e2c7750df4dcf3390fc0"
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050012
Andrew Geissler517393d2023-01-13 08:55:19 -060013RUSTSRC = "${WORKDIR}/rustc-${RUST_VERSION}-src"
14
15# Used by crossbeam_atomic.patch
16export TARGET_VENDOR
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050017
18UPSTREAM_CHECK_URI = "https://forge.rust-lang.org/infra/other-installation-methods.html"
19UPSTREAM_CHECK_REGEX = "rustc-(?P<pver>\d+(\.\d+)+)-src"
Andrew Geissler517393d2023-01-13 08:55:19 -060020
21# see recipes-devtools/gcc/gcc/0018-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
22# we need to link with ssp_nonshared on musl to avoid "undefined reference to `__stack_chk_fail_local'"
23# when building MACHINE=qemux86 for musl
24WRAPPER_TARGET_EXTRALD:libc-musl = "-lssp_nonshared"