Skip to content
Snippets Groups Projects
Commit 214d32d2 authored by Brian Cain's avatar Brian Cain Committed by Brian Cain
Browse files

Add support for hexagon-unknown-linux-musl

parent d660c38c
No related branches found
No related tags found
No related merge requests found
...@@ -186,6 +186,7 @@ armebv7r-none-eabihf \ ...@@ -186,6 +186,7 @@ armebv7r-none-eabihf \
armv7-unknown-cloudabi-eabihf \ armv7-unknown-cloudabi-eabihf \
armv7r-none-eabi \ armv7r-none-eabi \
armv7r-none-eabihf \ armv7r-none-eabihf \
hexagon-unknown-linux-musl \
i586-pc-windows-msvc \ i586-pc-windows-msvc \
i686-pc-windows-msvc \ i686-pc-windows-msvc \
i686-unknown-cloudabi \ i686-unknown-cloudabi \
......
...@@ -60,6 +60,7 @@ macro_rules! expand_align { ...@@ -60,6 +60,7 @@ macro_rules! expand_align {
#[cfg_attr(all(target_pointer_width = "32", #[cfg_attr(all(target_pointer_width = "32",
any(target_arch = "mips", any(target_arch = "mips",
target_arch = "arm", target_arch = "arm",
target_arch = "hexagon",
target_arch = "powerpc", target_arch = "powerpc",
target_arch = "x86_64", target_arch = "x86_64",
target_arch = "x86")), target_arch = "x86")),
...@@ -67,6 +68,7 @@ macro_rules! expand_align { ...@@ -67,6 +68,7 @@ macro_rules! expand_align {
#[cfg_attr(any(target_pointer_width = "64", #[cfg_attr(any(target_pointer_width = "64",
not(any(target_arch = "mips", not(any(target_arch = "mips",
target_arch = "arm", target_arch = "arm",
target_arch = "hexagon",
target_arch = "powerpc", target_arch = "powerpc",
target_arch = "x86_64", target_arch = "x86_64",
target_arch = "x86"))), target_arch = "x86"))),
...@@ -79,6 +81,7 @@ macro_rules! expand_align { ...@@ -79,6 +81,7 @@ macro_rules! expand_align {
#[cfg_attr(all(target_pointer_width = "32", #[cfg_attr(all(target_pointer_width = "32",
any(target_arch = "mips", any(target_arch = "mips",
target_arch = "arm", target_arch = "arm",
target_arch = "hexagon",
target_arch = "powerpc", target_arch = "powerpc",
target_arch = "x86_64", target_arch = "x86_64",
target_arch = "x86")), target_arch = "x86")),
...@@ -86,6 +89,7 @@ macro_rules! expand_align { ...@@ -86,6 +89,7 @@ macro_rules! expand_align {
#[cfg_attr(any(target_pointer_width = "64", #[cfg_attr(any(target_pointer_width = "64",
not(any(target_arch = "mips", not(any(target_arch = "mips",
target_arch = "arm", target_arch = "arm",
target_arch = "hexagon",
target_arch = "powerpc", target_arch = "powerpc",
target_arch = "x86_64", target_arch = "x86_64",
target_arch = "x86"))), target_arch = "x86"))),
......
This diff is collapsed.
...@@ -56,6 +56,9 @@ cfg_if! { ...@@ -56,6 +56,9 @@ cfg_if! {
} else if #[cfg(any(target_arch = "powerpc"))] { } else if #[cfg(any(target_arch = "powerpc"))] {
mod powerpc; mod powerpc;
pub use self::powerpc::*; pub use self::powerpc::*;
} else if #[cfg(any(target_arch = "hexagon"))] {
mod hexagon;
pub use self::hexagon::*;
} else { } else {
// Unknown target_arch // Unknown target_arch
} }
......
...@@ -414,8 +414,9 @@ cfg_if! { ...@@ -414,8 +414,9 @@ cfg_if! {
pub use self::b64::*; pub use self::b64::*;
} else if #[cfg(any(target_arch = "x86", } else if #[cfg(any(target_arch = "x86",
target_arch = "mips", target_arch = "mips",
target_arch = "arm", target_arch = "powerpc",
target_arch = "powerpc"))] { target_arch = "hexagon",
target_arch = "arm"))] {
mod b32; mod b32;
pub use self::b32::*; pub use self::b32::*;
} else { } } else { }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment