# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.aportgen.core from pmb.core.arch import Arch from pmb.core.context import get_context from pmb.core.pkgrepo import pkgrepo_default_path import pmb.helpers.git import pmb.helpers.run def generate(pkgname: str) -> None: # Copy original aport prefix = pkgname.split("-")[0] arch = Arch.from_str(pkgname.split("-")[1]) context = get_context() if prefix == "gcc": upstream = pmb.aportgen.core.get_upstream_aport("gcc", arch) based_on = "main/gcc (from Alpine)" elif prefix == "gcc4": upstream = pkgrepo_default_path() / "main/gcc4" based_on = "main/gcc4 (from postmarketOS)" elif prefix == "gcc6": upstream = pkgrepo_default_path() / "main/gcc6" based_on = "main/gcc6 (from postmarketOS)" else: raise ValueError(f"Invalid prefix '{prefix}', expected gcc, gcc4 or gcc6.") pmb.helpers.run.user(["cp", "-r", upstream, context.config.cache / "aportgen"]) # Rewrite APKBUILD fields = { "pkgname": pkgname, "pkgdesc": f"Stage2 cross-compiler for {arch}", "arch": pmb.aportgen.get_cross_package_arches(pkgname), "depends": f"binutils-{arch} mpc1", "makedepends_build": "gcc g++ bison flex texinfo gawk zip" " gmp-dev mpfr-dev mpc1-dev zlib-dev", "makedepends_host": "linux-headers gmp-dev mpfr-dev mpc1-dev isl-dev" f" zlib-dev musl-dev-{arch} binutils-{arch}", "subpackages": "", # gcc6: options is already there, so we need to replace it and not only # set it below the header like done below. "options": "!strip", "LIBGOMP": "false", "LIBGCC": "false", "LIBATOMIC": "false", "LIBITM": "false", } # Latest gcc only, not gcc4 and gcc6 if prefix == "gcc": fields["subpackages"] = f"g++-{arch}:gpp libstdc++-dev-{arch}:libcxx_dev" below_header = ( "CTARGET_ARCH=" + str(arch) + """ CTARGET="$(arch_to_hostspec ${CTARGET_ARCH})" LANG_D=false LANG_OBJC=false LANG_JAVA=false LANG_GO=false LANG_FORTRAN=false LANG_ADA=false options="!strip" # abuild doesn't try to tries to install "build-base-$CTARGET_ARCH" # when this variable matches "no*" BOOTSTRAP="nobuildbase" # abuild will only cross compile when this variable is set, but it # needs to find a valid package database in there for dependency # resolving, so we set it to /. CBUILDROOT="/" _cross_configure="--disable-bootstrap --with-sysroot=/usr/$CTARGET" """ ) replace_simple = { # Do not package libstdc++, do not add "g++-$ARCH" here (already # did that explicitly in the subpackages variable above, so # pmbootstrap picks it up properly). '*subpackages="$subpackages libstdc++:libcxx:*': None, # We set the cross_configure variable at the beginning, so it does not # use CBUILDROOT as sysroot. In the original APKBUILD this is a local # variable, but we make it a global one. "*_cross_configure=*": None, # Do not build foreign arch libgcc, we use the one from Alpine (#2168) "_libgcc=true*": "_libgcc=false", } pmb.aportgen.core.rewrite( pkgname, based_on, fields, replace_simple=replace_simple, below_header=below_header )