From 7f4ae7dca9417b3977abacf04ebfc6bc0a07c507 Mon Sep 17 00:00:00 2001 From: "liang.he@intel.com" Date: Tue, 23 Dec 2025 03:54:24 +0000 Subject: [PATCH] fix: remove unsupported build options for macOS workflows --- .github/workflows/compilation_on_macos.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/compilation_on_macos.yml b/.github/workflows/compilation_on_macos.yml index 217774770..9fcc34b43 100644 --- a/.github/workflows/compilation_on_macos.yml +++ b/.github/workflows/compilation_on_macos.yml @@ -233,10 +233,8 @@ jobs: $AOT_BUILD_OPTIONS, $CLASSIC_INTERP_BUILD_OPTIONS, $FAST_INTERP_BUILD_OPTIONS, - $FAST_JIT_BUILD_OPTIONS, $LLVM_LAZY_JIT_BUILD_OPTIONS, $LLVM_EAGER_JIT_BUILD_OPTIONS, - $MULTI_TIER_JIT_BUILD_OPTIONS, ] os: [macos-15, macos-15-intel] include: @@ -247,12 +245,6 @@ jobs: # classic interp doesn't support SIMD - make_options: $CLASSIC_INTERP_BUILD_OPTIONS extra_options: "-DWAMR_BUILD_SIMD=0" - # fast jit doesn't support Multi-module and SIMD - - make_options: $FAST_JIT_BUILD_OPTIONS - extra_options: "-DWAMR_BUILD_SIMD=0 -DWAMR_BUILD_MULTI_MODULE=0" - # multi-tier jit doesn't support Multi-module and SIMD - - make_options: $MULTI_TIER_JIT_BUILD_OPTIONS - extra_options: "-DWAMR_BUILD_SIMD=0 -DWAMR_BUILD_MULTI_MODULE=0" # LLVM JIT doesn't support Multi-module - make_options: $LLVM_LAZY_JIT_BUILD_OPTIONS extra_options: "-DWAMR_BUILD_MULTI_MODULE=0"