From f4c35a09dec219d9edf018109007822ecc5a6841 Mon Sep 17 00:00:00 2001 From: "Enrico Fraccaroli (Galfurian)" Date: Thu, 30 Nov 2023 11:38:17 -0500 Subject: [PATCH] Use gcc@11 under MacOS --- .github/workflows/macos.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index df4a194..2e51144 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -23,11 +23,10 @@ jobs: uses: actions/checkout@v3 - name: Install dependencies run: | - brew install nasm + brew install x86_64-elf-gcc nasm - name: Build env: - CC: gcc-11 - CXX: g++-11 + TOOLPREFIX: x86_64-elf- run: | cmake -DCMAKE_ASM_COMPILER=/usr/local/bin/nasm -B build - cmake --build build --parallel 2 --verbose + cmake --build build --parallel 2