Add x86-64, ios, macosx to the ASM_TARGETS array.

This fixes the build on x86_64-apple-ios.
This commit is contained in:
Ryan Leckey 2017-10-18 17:06:11 -07:00 committed by Brian Smith
parent ab72aa1ab4
commit 1d3ac2ed95

View File

@ -254,6 +254,7 @@ const LD_FLAGS: &'static [&'static str] = &[];
const ASM_TARGETS:
&'static [(&'static str, Option<&'static str>, &'static str)] =
&[
("x86_64", Some("ios"), "macosx"),
("x86_64", Some("macos"), "macosx"),
("x86_64", Some(WINDOWS), "nasm"),
("x86_64", None, "elf"),