diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-03 20:01:22 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-04 11:08:25 +0200 |
| commit | ae5c92ac38dd7facce8a61b110e08b1b4a2a4238 (patch) | |
| tree | 16e78531439db7fce856f93ff4f064647f40eaad /core/sys | |
| parent | 986cfbcaf4aa6300109e93c114e439d2578887af (diff) | |
Enable `odin check examples/all` for JS.
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/info/sysinfo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/info/sysinfo.odin b/core/sys/info/sysinfo.odin index f624a1718..75cc237c6 100644 --- a/core/sys/info/sysinfo.odin +++ b/core/sys/info/sysinfo.odin @@ -1,6 +1,6 @@ package sysinfo -when !(ODIN_ARCH == .amd64 || ODIN_ARCH == .i386 || ODIN_ARCH == .arm32 || ODIN_ARCH == .arm64 || ODIN_ARCH == .riscv64) { +when !(ODIN_ARCH == .amd64 || ODIN_ARCH == .i386 || ODIN_ARCH == .arm32 || ODIN_ARCH == .arm64 || ODIN_ARCH == .riscv64 || ODIN_ARCH == .wasm32 || ODIN_ARCH == .wasm64p32) { #assert(false, "This package is unsupported on this architecture.") } |