blob: 98f9626f0293e8789a8e2ae80f9e6a4cc484c354 [file] [log] [blame]
Mike Frysinger51a0a6b2022-09-09 09:21:07 -04001# Copyright 2020 The ChromiumOS Authors
George Burgess IV2e2bdda2021-07-28 04:40:02 +00002# Distributed under the terms of the GNU General Public License v2
3
4# Bootstraps rustc (the official Rust compiler) using mrustc (a Rust
5# compiler written in C++).
6#
7# The version of this ebuild reflects the version of rustc that will
8# ultimately be installed.
9#
10# This ebuild can be used in two modes, controlled by the fullbootstrap
11# USE flag:
12#
13# fullbootstrap: Build everything from source. This can take over
14# 10 hours.
15#
16# -fullbootstrap: Start with a prebuilt from an earlier rust-bootstrap
17# and build only versions after that from source.
18#
19# The default is -fullbootstrap, so that you only get the 10+ hour build
20# time if you explicitly request it.
21
22EAPI=7
23
24inherit toolchain-funcs
25
26DESCRIPTION="Bootstraps the rustc Rust compiler using mrustc"
27HOMEPAGE="https://github.com/thepowersgang/mrustc"
28MRUSTC_VERSION="0.9"
29MRUSTC_NAME="mrustc-${MRUSTC_VERSION}"
30
31SLOT="${PV}"
32KEYWORDS="*"
33IUSE="-fullbootstrap"
34
35INITIAL_RUSTC_VERSION="1.29.0"
36# Versions of rustc to build after the initial one.
37RUSTC_RAW_FULL_BOOTSTRAP_SEQUENCE=(
38 1.30.0
39 1.31.1
40 1.32.0
41 1.33.0
42 1.34.2
43 1.35.0
44 1.36.0
45 1.37.0
46 1.38.0
47 1.39.0
48 1.40.0
49 1.41.1
50 1.42.0
51 1.43.1
52 1.44.1
53 1.45.2
54 1.46.0
55 1.47.0
56 1.48.0
57 1.49.0
58 1.50.0
George Burgess IVdf40ff02021-08-01 09:41:49 +000059 1.51.0
George Burgess IVdb84f752021-08-05 06:43:19 +000060 1.52.0
Bob Haarmanc1d2b0c2021-09-15 23:56:57 +000061 1.53.0
George Burgess IV5fdb4882022-01-21 02:31:08 -080062 1.54.0
63 1.55.0
64 1.56.1
65 1.57.0
Bob Haarmanb5128bf2022-04-11 11:27:38 -070066 1.58.1
George Burgess IV88961b82022-07-14 11:42:39 -070067 1.59.0
Michael Benfieldfbcc7a82022-07-13 23:20:28 +000068 1.60.0
George Burgess IV2e2bdda2021-07-28 04:40:02 +000069)
70
71RUSTC_FULL_BOOTSTRAP_SEQUENCE=()
72
73for version in "${RUSTC_RAW_FULL_BOOTSTRAP_SEQUENCE[@]}"; do
74 if [[ ! "${PV}" > "${version}" ]]; then
75 break
76 fi
77 RUSTC_FULL_BOOTSTRAP_SEQUENCE+=( "${version}" )
78done
79
80# When not using fullbootstrap, use this version as a starting point.
81PREBUILT_VERSION="${RUSTC_FULL_BOOTSTRAP_SEQUENCE[-1]}"
82SRC_URI="gs://chromeos-localmirror/distfiles/rustc-${PV}-src.tar.gz
83 !fullbootstrap? ( gs://chromeos-localmirror/distfiles/rust-bootstrap-${PREBUILT_VERSION}.tbz2 )
84 fullbootstrap? ( gs://chromeos-localmirror/distfiles/${MRUSTC_NAME}.tar.gz )
85 fullbootstrap? ( gs://chromeos-localmirror/distfiles/rustc-${INITIAL_RUSTC_VERSION}-src.tar.gz )"
86for version in "${RUSTC_FULL_BOOTSTRAP_SEQUENCE[@]}"; do
87 SRC_URI+=" fullbootstrap? ( gs://chromeos-localmirror/distfiles/rustc-${version}-src.tar.gz )"
88done
89
90LICENSE="MIT Apache-2.0 BSD-1 BSD-2 BSD-4 UoI-NCSA"
91
92DEPEND="dev-libs/openssl
93 net-libs/libssh2"
94RDEPEND="${DEPEND}"
95
96# These tasks take a long time to run for not much benefit: Most of the files
97# they check are never installed. Those that are are only there to bootstrap
98# the rust ebuild, which has the same RESTRICT anyway.
99RESTRICT="binchecks strip"
100
101pkg_setup() {
102 if use fullbootstrap; then
103 RUSTC_VERSION_SEQUENCE=( "${RUSTC_FULL_BOOTSTRAP_SEQUENCE[@]}" )
104 PATCHES=(
105 "${FILESDIR}/${PN}-no-curl.patch"
106 "${FILESDIR}/${PN}-compilation-fixes.patch"
107 "${FILESDIR}/${PN}-8ddb05-invalid-output-constraint.patch"
108 "${FILESDIR}/${PN}-libgit2-sys-pkg-config.patch"
109 "${FILESDIR}/${PN}-cc.patch"
110 "${FILESDIR}/${PN}-printf.patch"
111 "${FILESDIR}/${PN}-1.48.0-libc++.patch"
112 )
113 S="${WORKDIR}/${MRUSTC_NAME}"
114 else
115 RUSTC_VERSION_SEQUENCE=( )
116 # We manually apply patches to rustcs in the version sequence,
117 # so that we can pass the necessary -p value. To prevent
118 # default from trying and failing to apply patches, we set
119 # PATCHES to empty.
120 PATCHES=( )
121 S="${WORKDIR}/rustc-${PV}-src"
122 fi
123 RUSTC_VERSION_SEQUENCE+=( ${PV} )
124}
125
126src_unpack() {
127 default
128 if use fullbootstrap; then
129 # Move rustc sources to where mrustc expects them.
130 mv "${WORKDIR}/rustc-${INITIAL_RUSTC_VERSION}-src" "${S}" || die
131 fi
132}
133
134src_prepare() {
135 # Call the default implementation. This applies PATCHES.
136 default
137
138 if use fullbootstrap; then
139
140 # The next few steps mirror what mrustc's Makefile does to configure the
141 # build for a specific rustc version.
142 (cd "rustc-${INITIAL_RUSTC_VERSION}-src" || die; eapply -p0 "${S}/rustc-${INITIAL_RUSTC_VERSION}-src.patch")
143 cd "${S}" || die
144 echo "${INITIAL_RUSTC_VERSION}" > "rust-version" || die
145 cp "rust-version" "rustc-${INITIAL_RUSTC_VERSION}-src/dl-version" || die
146 fi
147
148 # There are some patches that need to be applied to the rustc versions
149 # we build with rustc. Apply them here.
150 local version
151 for version in "${RUSTC_VERSION_SEQUENCE[@]}"; do
152 einfo "Patching rustc-${version}"
153 # The location of files we patch changed in 1.48.
154 # We have patches with no version number for versions
155 # before 1.48, and with version number for after.
156 local libc_patch="${FILESDIR}/${PN}-1.48.0-libc++.patch"
157 if [[ "${version}" < "1.48.0" ]]; then
158 libc_patch="${FILESDIR}/${PN}-libc++.patch"
159 fi
160 (cd "${WORKDIR}/rustc-${version}-src" || die; eapply -p2 "${libc_patch}")
161 done
162}
163
164src_configure() {
165 # Avoid the default implementation, which overwrites vendored
166 # config.guess and config.sub files, which then causes checksum
167 # errors during the build, e.g.
168 # error: the listed checksum of `/var/tmp/portage/dev-lang/rust-bootstrap-1.46.0/work/rustc-1.46.0-src/vendor/backtrace-sys/src/libbacktrace/config.guess` has changed:
169 # expected: 12e217c83267f1ff4bad5d9b2b847032d91e89ec957deb34ec8cb5cef00eba1e
170 # actual: 312ea023101dc1de54aa8c50ed0e82cb9c47276316033475ea403cb86fe88ffe
171 # (The dev-lang/rust ebuilds in Chrome OS and Gentoo also have custom
172 # src_configure implementations.)
173 true
174}
175
176src_compile() {
177 # 1. Build initial rustc using mrustc
178 # -----------------------------------
179 #
180 # All of these specify:
181 # - CC and CXX so that we build with Clang instead of a GCC version that defaults to pre-C99 C.
182 # - LLVM_TARGETS, else it will be empty and rustc will not work.
183 # - RUSTC_VERSION because the Makefiles will otherwise set it to an incorrect value.
184 # - OPENSSL_DIR so that cargo knows where to look for OpenSSL headers.
185 export CC=$(tc-getBUILD_CC)
186 export CXX=$(tc-getBUILD_CXX)
187 export PKG_CONFIG=$(tc-getBUILD_PKG_CONFIG)
188 export OPENSSL_DIR="${ESYSROOT}/usr"
189 # Only actually build mrustc when using fullbootstrap.
190 if use fullbootstrap; then
191 # Two separate commands, because invoking just the second command leads to race
192 # conditions.
193 emake LLVM_TARGETS=X86 RUSTC_VERSION=${INITIAL_RUSTC_VERSION} output/rustc output/cargo
194 emake LLVM_TARGETS=X86 RUSTC_VERSION=${INITIAL_RUSTC_VERSION} -C run_rustc
195 fi
196
197 # 2. Build successive versions of rustc using previous rustc
198 # ----------------------------------------------------------
199 if use fullbootstrap; then
200 local prev_version=${INITIAL_RUSTC_VERSION}
201 local prev_cargo="${S}/run_rustc/output/prefix/bin/cargo"
202 local prev_rustc="${S}/run_rustc/output/prefix/bin/rustc"
203 else
204 local prev_version=${PREBUILT_VERSION}
205 local prev_cargo="${WORKDIR}/opt/rust-bootstrap-${PREBUILT_VERSION}/bin/cargo"
206 local prev_rustc="${WORKDIR}/opt/rust-bootstrap-${PREBUILT_VERSION}/bin/rustc"
207 fi
208 local next_version rustc_dir
209 for next_version in "${RUSTC_VERSION_SEQUENCE[@]}"; do
210 einfo "Building rustc-${next_version} using rustc-${prev_version}"
Michael Benfieldfbcc7a82022-07-13 23:20:28 +0000211 # This became necessary in Rust 1.61.0.
212 local static_libstdcpp='static-libstdcpp = false'
213 if [[ "${next_version}" < "1.61.0" ]]; then
214 static_libstdcpp=''
215 fi
George Burgess IV2e2bdda2021-07-28 04:40:02 +0000216 rustc_dir="${WORKDIR}/rustc-${next_version}-src"
217 cd "${rustc_dir}" || die "Could not chdir to ${rustc_dir}"
218 cat > config.toml <<EOF
219[build]
220cargo = "${prev_cargo}"
221rustc = "${prev_rustc}"
222docs = false
223vendor = true
224# extended means we also build cargo and a few other commands.
225extended = true
226# For rust-bootstrap, we need only cargo.
227tools = [ "cargo" ]
228
229[install]
230prefix = "${ED}/opt/rust-bootstrap-${next_version}"
231
232[rust]
233default-linker = "${CC}"
234
235[llvm]
236# For rust-bootstrap, we only need x86_64, which LLVM calls X86.
237targets = "X86"
Michael Benfieldfbcc7a82022-07-13 23:20:28 +0000238${static_libstdcpp}
George Burgess IV2e2bdda2021-07-28 04:40:02 +0000239
240[target.x86_64-unknown-linux-gnu]
241cc = "${CC}"
242cxx = "${CXX}"
243linker = "${CC}"
244EOF
245
246 # --stage 2 causes this to use the previously-built compiler,
247 # instead of the default behavior of downloading one from
248 # upstream.
249 ./x.py --stage 2 build || die
250 # For some rustc versions (e.g. 1.31.1), the build script will exit with
251 # a nonzero exit status because miri fails to build when it is not in a git
252 # repository. This does not affect the ability to build the next rustc.
253 # So instead of looking at the exit code, we check if rustc and cargo
254 # were built.
255 prev_version=${next_version}
256 prev_cargo="${rustc_dir}/build/x86_64-unknown-linux-gnu/stage2-tools/x86_64-unknown-linux-gnu/release/cargo"
257 prev_rustc="${rustc_dir}/build/x86_64-unknown-linux-gnu/stage2/bin/rustc"
258 [[ -x "${prev_rustc}" ]] || die "Failed to build ${prev_rustc}"
259 [[ -x "${prev_cargo}" ]] || die "Failed to build ${prev_cargo}"
260 einfo "Built rustc-${next_version}"
261 done
262
263 # Remove the src/rust symlink which will be dangling after sources are
264 # removed, and the containing src directory.
265 rm "${WORKDIR}/rustc-${PV}-src/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/src/rust" || die
266 rmdir "${WORKDIR}/rustc-${PV}-src/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/src" || die
267}
268
269src_install() {
270 local obj="${WORKDIR}/rustc-${PV}-src/build/x86_64-unknown-linux-gnu/stage2"
271 local tools="${obj}-tools/x86_64-unknown-linux-gnu/release/"
272 exeinto "/opt/${P}/bin"
273 # With rustc-1.45.2 at least, regardless of the value of install.libdir,
274 # the rpath seems to end up as $ORIGIN/../lib. So install the libraries there.
275 insinto "/opt/${P}/lib"
276 doexe "${obj}/bin/rustc"
277 doexe "${tools}/cargo"
278 doins -r "${obj}/lib/"*
279 find "${D}" -name '*.so' -exec chmod +x '{}' ';'
280}