Compile 32 bit versions of the toolchain

This commit is contained in:
Alex
2022-12-21 03:58:12 +02:00
parent 45d39a155e
commit 15c36971e9
2 changed files with 30 additions and 8 deletions

View File

@ -104,14 +104,22 @@ jobs:
if: steps.cache-cross.outputs.cache-hit != 'true'
run: sudo apt install build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libzstd-dev libisl-dev autoconf m4 automake gettext gperf dejagnu guile-3.0 guile-3.0-dev expect tcl autogen tex-common sphinx-common git ssh diffutils patch -y
- name: Compile Toolchain Binutils
- name: Compile 64-bit Toolchain Binutils
if: steps.cache-cross.outputs.cache-hit != 'true'
run: make --quiet -C tools do_toolchain_binutils64
- name: Compile Toolchain GCC
- name: Compile 64-bit Toolchain GCC
if: steps.cache-cross.outputs.cache-hit != 'true'
run: make --quiet -C tools do_toolchain_gcc64
- name: Compile 32-bit Toolchain Binutils
if: steps.cache-cross.outputs.cache-hit != 'true'
run: make --quiet -C tools do_toolchain_binutils32
- name: Compile 32-bit Toolchain GCC
if: steps.cache-cross.outputs.cache-hit != 'true'
run: make --quiet -C tools do_toolchain_gcc32
compilegnuefi:
name: Build GNU-EFI
runs-on: ubuntu-latest