-
Notifications
You must be signed in to change notification settings - Fork 194
Open
Labels
Description
With SubstrateVM now compiling to WASI p1 with --tool:svm-wasm
, next is TruffleRuby running on WASM.
I tried running the following with --tool:svm-wasm
, but it looks like the --language:ruby
flag was removed from the native-image
tool.
native-image -o native-ruby --language:ruby |
Any insight into hacking the mx build to target wasm would be very helpful.
See: https://2025.wasm.io/sessions/the-future-of-write-once-run-anywhere-from-java-to-webassembly/
See: #82
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
eregon commentedon Jun 11, 2025
Right, that part is outdated,
--language:ruby
is a legacy macro and that's gone now.These days, you would get the jars from Maven for
org.graalvm.polyglot:ruby
, and either use the Native Image Maven/Gradle plugin or get the full classpath of the dependencies via something likemvn dependency:build-classpath
.