diff options
author | Fabian Groffen <grobian@gentoo.org> | 2024-09-29 11:32:35 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2024-09-29 11:32:35 +0200 |
commit | 507d785ace4872b9a098a41b0f71545178b76942 (patch) | |
tree | a1376f6bf3cac40454b7deeb195fe973b9c5c0bd | |
parent | sys-devel/gcc-14.2.0: avoid using incompatible __FLT_EVAL_METHOD__ (diff) | |
download | prefix-507d785ace4872b9a098a41b0f71545178b76942.tar.gz prefix-507d785ace4872b9a098a41b0f71545178b76942.tar.bz2 prefix-507d785ace4872b9a098a41b0f71545178b76942.zip |
sys-devel/gcc: replace USE=bootstrap with USE=system-bootstrap
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rw-r--r-- | sys-devel/gcc/gcc-13.3.0.ebuild | 4 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-14.1.0.ebuild | 4 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-14.2.0.ebuild | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys-devel/gcc/gcc-13.3.0.ebuild b/sys-devel/gcc/gcc-13.3.0.ebuild index eb8200a374..ba301ba348 100644 --- a/sys-devel/gcc/gcc-13.3.0.ebuild +++ b/sys-devel/gcc/gcc-13.3.0.ebuild @@ -43,7 +43,7 @@ fi # use alternate source for Apple M1 (also works for x86_64) SRC_URI+=" elibc_Darwin? ( https://raw.githubusercontent.com/Homebrew/formula-patches/bda0faddfbfb392e7b9c9101056b2c5ab2500508/gcc/gcc-${PV}.diff -> gcc-${PV}-arm64-darwin.patch )" -IUSE+=" bootstrap" +IUSE+=" system-bootstrap" if [[ ${CATEGORY} != cross-* ]] ; then # Technically only if USE=hardened *too* right now, but no point in complicating it further. @@ -93,7 +93,7 @@ src_prepare() { fi if [[ ${CHOST} == *-darwin* ]] ; then - use bootstrap && eapply "${FILESDIR}"/${PN}-13-darwin14-bootstrap.patch + use system-bootstrap && eapply "${FILESDIR}"/${PN}-13-darwin14-bootstrap.patch # our ld64 is a slight bit different, so tweak expression to not # get confused and break the build diff --git a/sys-devel/gcc/gcc-14.1.0.ebuild b/sys-devel/gcc/gcc-14.1.0.ebuild index 219cdf7330..0f27bd4591 100644 --- a/sys-devel/gcc/gcc-14.1.0.ebuild +++ b/sys-devel/gcc/gcc-14.1.0.ebuild @@ -31,7 +31,7 @@ fi # use alternate source for Apple M1 (also works for x86_64) SRC_URI+=" elibc_Darwin? ( https://raw.githubusercontent.com/Homebrew/formula-patches/82b5c1cd38826ab67ac7fc498a8fe74376a40f4a/gcc/gcc-14.1.0.diff -> gcc-14.1.0-arm64-darwin.patch https://github.com/iains/gcc-14-branch/commit/75ff8c390327ac693f6a1c40510bc0d35d7a1e22.patch?full_index=1 -> gcc-14.1.0-macos-SDK-availability.patch )" -IUSE+=" bootstrap" +IUSE+=" system-bootstrap" if [[ ${CATEGORY} != cross-* ]] ; then # Technically only if USE=hardened *too* right now, but no point in complicating it further. @@ -75,7 +75,7 @@ src_prepare() { fi if [[ ${CHOST} == *-darwin* ]] ; then - use bootstrap && eapply "${FILESDIR}"/${PN}-13-darwin14-bootstrap.patch + use system-bootstrap && eapply "${FILESDIR}"/${PN}-13-darwin14-bootstrap.patch # our ld64 is a slight bit different, so tweak expression to not # get confused and break the build diff --git a/sys-devel/gcc/gcc-14.2.0.ebuild b/sys-devel/gcc/gcc-14.2.0.ebuild index 7fe17192e3..aed471b324 100644 --- a/sys-devel/gcc/gcc-14.2.0.ebuild +++ b/sys-devel/gcc/gcc-14.2.0.ebuild @@ -32,7 +32,7 @@ fi # use alternate source for Apple M1 (also works for x86_64) SRC_URI+=" elibc_Darwin? ( https://raw.githubusercontent.com/Homebrew/formula-patches/d5dcb918a951b2dcf2d7702db75eb29ef144f614/gcc/gcc-14.2.0.diff -> gcc-14.2.0-arm64-darwin.patch )" -IUSE+=" bootstrap" +IUSE+=" system-bootstrap" if [[ ${CATEGORY} != cross-* ]] ; then # Technically only if USE=hardened *too* right now, but no point in complicating it further. @@ -77,7 +77,7 @@ src_prepare() { fi if [[ ${CHOST} == *-darwin* ]] ; then - use bootstrap && eapply "${FILESDIR}"/${PN}-13-darwin14-bootstrap.patch + use system-bootstrap && eapply "${FILESDIR}"/${PN}-13-darwin14-bootstrap.patch # our ld64 is a slight bit different, so tweak expression to not # get confused and break the build |