From 6ef319ef75400421e53d35bfcdefe475bdc70b47 Mon Sep 17 00:00:00 2001 From: such-gitea Date: Wed, 11 Feb 2026 16:56:23 -0500 Subject: [PATCH] Update .gitea/workflows/build.yaml --- .gitea/workflows/build.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 88ab2c8..d429904 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,4 +1,4 @@ -name: Build Wownero LWS (Mac Deep Fix) +name: Build Wownero LWS (Mac Final Fix) on: push: branches: [ master, main ] @@ -169,7 +169,7 @@ jobs: curl -f -O $BASE/jump_arm64_aapcs_elf_gas.S curl -f -O $BASE/make_arm64_aapcs_elf_gas.S curl -f -O $BASE/ontop_arm64_aapcs_elf_gas.S - if [ ! -s jump_arm64_aapcs_elf_gas.S ]; then echo "FATAL: Empty file"; exit 1; fi + if [ ! -s jump_arm64_aapcs_elf_gas.S ]; then echo "FATAL: Empty file downloaded"; exit 1; fi aarch64-linux-gnu-gcc -c jump_arm64_aapcs_elf_gas.S -o jump.o aarch64-linux-gnu-gcc -c make_arm64_aapcs_elf_gas.S -o make.o aarch64-linux-gnu-gcc -c ontop_arm64_aapcs_elf_gas.S -o ontop.o @@ -246,7 +246,7 @@ jobs: # ... # ================================================================== - # JOB 4: MACOS - RT REMOVAL + ARCH FIX + # JOB 4: MACOS - RT & JIT FIX # ================================================================== macos: runs-on: macos-latest @@ -285,7 +285,6 @@ jobs: perl -pi -e 's/locale//g' external/monero/CMakeLists.txt # FIX 1: Physically delete any reference to 'rt' in the CMake file - # macOS doesn't have it, and even checking for it can confuse things. perl -pi -e 's/rt //g' CMakeLists.txt perl -pi -e 's/RT_LIBRARY//g' CMakeLists.txt @@ -305,7 +304,7 @@ jobs: SDK_DIR="$(pwd)/../wownero-sdk" # FIX 2: Added -DARCH=${{ matrix.build_arch }} to force correct JIT target - # FIX 3: Added -DRT_LIBRARY="" just in case + # FIX 3: Added -DRT_LIBRARY="" just in case the sed replacement missed something cmake .. -DCMAKE_BUILD_TYPE=Release \ -DBUILD_STATIC=ON \ -DBoost_USE_STATIC_RUNTIME=OFF \