1
Fork 0

add support for hexagon-unknown-linux-musl

This commit is contained in:
Brian Cain 2018-08-10 12:01:18 -05:00
parent 527dce7137
commit 4b339688b5
10 changed files with 110 additions and 2 deletions

View file

@ -975,6 +975,11 @@ mod arch {
pub const ARCH: &str = "wasm32";
}
#[cfg(target_arch = "hexagon")]
mod arch {
pub const ARCH: &'static str = "hexagon";
}
#[cfg(test)]
mod tests {
use super::*;