diff options
author | Hiroshi SHIBATA <[email protected]> | 2025-01-16 18:02:16 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-01-20 10:15:08 +0900 |
commit | a41e9d8f9abac7373e3429a07584bdef2dcc3f90 (patch) | |
tree | a53a577cc07409f1c6912b4bfa09d5dad1433024 | |
parent | 10d129120584f1bcbbdd44bc2f07b25b41786a2c (diff) |
Use configu.guess with wasi compatible version
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12589
-rw-r--r-- | .github/workflows/wasm.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index 1cda4f9571..d7e316c3dc 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -114,6 +114,12 @@ jobs: make make install + - name: Download config.guess with wasi version + run: | + rm tool/config.guess tool/config.sub + ruby tool/downloader.rb -d tool -e gnu config.guess config.sub + working-directory: src + - name: Run configure run: | ../src/configure \ |