diff --git a/.github/workflows/llgo.yml b/.github/workflows/llgo.yml index 9fdb3931..bc375f97 100644 --- a/.github/workflows/llgo.yml +++ b/.github/workflows/llgo.yml @@ -226,13 +226,6 @@ jobs: make -j8 echo "$PWD" >> $GITHUB_PATH - - name: Install wasi-libc - run: | - wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-25/libclang_rt.builtins-wasm32-wasi-25.0.tar.gz - tar -xvf libclang_rt.builtins-wasm32-wasi-25.0.tar.gz - mkdir -p `llvm-config --libdir`/clang/19/lib/wasi/ - mv libclang_rt.builtins-wasm32-wasi-25.0/libclang_rt.builtins-wasm32.a `llvm-config --libdir`/clang/19/lib/wasi/ - - name: Install llgo run: | go install ./... @@ -245,10 +238,10 @@ jobs: echo "Testing cross-compilation wasm with Go 1.24.2" # Compile for wasm architecture - GOOS=wasip1 GOARCH=wasm llgo build -o hello -v ./helloc + GOOS=wasip1 GOARCH=wasm llgo build -o hello -tags=nogc -v ./helloc # Check file type file hello.wasm # Run the wasm binary using llgo_wasm - iwasm hello.wasm + iwasm --stack-size=819200000 --heap-size=800000000 hello.wasm