From 52eaeda7eceac54d9d2ea05e231bc067d4864689 Mon Sep 17 00:00:00 2001 From: Max Tyson <98maxt98@gmail.com> Date: Mon, 15 Jan 2024 22:36:31 +1300 Subject: [PATCH] Add nasm --- .github/workflows/max-os.yml | 2 +- toolchain/make_cross_compiler.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/max-os.yml b/.github/workflows/max-os.yml index bff81599..dcbc5aed 100644 --- a/.github/workflows/max-os.yml +++ b/.github/workflows/max-os.yml @@ -25,7 +25,7 @@ jobs: - name: Install Ubuntu Dependencies run: | sudo apt update - sudo apt install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libisl-dev cmake + sudo apt install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libisl-dev cmake nasm - name: Cache toolchain id: cache-toolchain diff --git a/toolchain/make_cross_compiler.sh b/toolchain/make_cross_compiler.sh index 078bb416..4197d03d 100755 --- a/toolchain/make_cross_compiler.sh +++ b/toolchain/make_cross_compiler.sh @@ -5,7 +5,7 @@ source ./MaxOS.sh if [ "$1" != "--no-deps" ]; then msg "Installing extra dependencies" sudo apt update - sudo apt install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libisl-dev cmake + sudo apt install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libisl-dev cmake nasm fi # Make A Directory For The Cross Compiler