# enable i686-unknown-linux-gnu target # and replace pentium4 (SSE2) with pentium3 (no SSE2) in the compiler spec file # # Also trying to reduce memory usage by building with # -debuginfo-level-std=1 # see https://github.com/rust-lang/rust/issues/60294 source+=(config.toml.patch) b2sums+=('916e62176ff8f943428532c28ec31632c153db5a9e906ae7a45df88cac72d437d23a56eb05e915ea2b2f524ac96d0b9ff8c106ed82572f7ed3324ded3fcf5a74') eval "$( declare -f prepare | \ sed ' $ i patch -p1 -i "$srcdir/config.toml.patch" ' )" # stop insanity of nproc (see FS#62952) eval "$( declare -f build | \ sed ' s/-j "$(nproc)"/$(grep -o -- "-j *[0-9]*" <<< ${MAKEFLAGS:--j8})/ ' )" if [ "${CARCH}" != 'pentium4' ]; then eval "$( declare -f prepare | \ sed ' $ i sed -i "s/pentium4/pentium3/g" "$srcdir/rustc-$pkgver-src/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs" ' )" fi # Don't move lib32 support into rust32-lib, we are on 32-bit in the end # and don't draw a symlink to 64-bit libraries (but to 32-bit instead) # move rust-musl though, also patch architecture for musl accordingly eval "$( declare -f build | \ sed ' /mkdir.*usr\/lib32/d /ln.*x86_64.*/d /ln.*i686-unknown-linux-gnu.*/d /_pick.*dest-i686.*/d s/x86_64-unknown-linux-musl/i686-unknown-linux-musl/ ' )" eval "$( declare -f package_rust | \ sed ' /ln /s/x86_64-unknown-linux-gnu/i686-unknown-linux-gnu/g ' )" eval "$( declare -f package_rust-musl | \ sed ' s/x86_64-unknown-linux-musl/i686-unknown-linux-musl/ ' )" # remove 32-bit stuff (shouldn't that be removed automatically?) pkgname=( $( printf '%s\n' "${pkgname[@]}" | \ grep -v '^lib32-rust-libs' ) ) makedepends=(${makedepends[@]//lib32-gcc-libs/}) # Enable on demand, if your previous rust is broken use previous version # from build-support (this is preferable to using rust-bin below, but # requires all intermediate versions of rust to be built #makedepends=(${makedepends[@]//rust/}) #makedepends+=('rust162') # Enable on demand, if your previous rust is broken use previous version # from build-support makedepends=(${makedepends[@]//rust/}) makedepends+=('rust176-bin') # Do not run out of memory linking LLVM options+=(!debug)