-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[wasm] Toolchain support for wasm32-wali-linux-musl
target
#156087
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 4 commits
cb996a1
2d4f581
f5cedb2
a07eb13
cfee54b
9985ce5
a0b8f5d
58a1bc7
ac40e2c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -199,6 +199,7 @@ class Triple { | |
SUSE, | ||
OpenEmbedded, | ||
Intel, | ||
WALI, | ||
|
||
Meta, | ||
LastVendorType = Meta | ||
}; | ||
|
@@ -795,6 +796,12 @@ class Triple { | |
return getObjectFormat() == Triple::DXContainer; | ||
} | ||
|
||
/// Tests whether the target uses WALI Wasm | ||
bool isWALI() const { | ||
return getArch() == Triple::wasm32 && getVendor() == Triple::WALI && | ||
getOS() == Triple::Linux; | ||
} | ||
|
||
/// Tests whether the target is the PS4 platform. | ||
bool isPS4() const { | ||
return getArch() == Triple::x86_64 && | ||
|
Uh oh!
There was an error while loading. Please reload this page.