From b7c32fc102596fd253141334f16f2a4a2ec1326a Mon Sep 17 00:00:00 2001 From: "Enrico Fraccaroli (Galfurian)" Date: Wed, 29 Nov 2023 10:13:48 -0500 Subject: [PATCH] Use x86_64-elf-gcc under MacOS --- .github/workflows/macos.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a4784f4..572ecf5 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -19,17 +19,16 @@ jobs: name: Build runs-on: macos-latest # Set environment variables - #env: + env: # We globally set CC and CXX. - # CC: x86_64-elf-gcc - # CXX: x86_64-elf-g++ + CC: x86_64-elf-gcc + CXX: x86_64-elf-g++ steps: - name: Clone repository uses: actions/checkout@v3 - name: Install dependencies run: | - brew install git cmake nasm - # x86_64-elf-binutils x86_64-elf-gcc + brew install x86_64-elf-gcc git cmake nasm - name: Build run: | cmake -B build