2017-04-10 14:38:17 -05:00
|
|
|
#![feature(compiler_builtins_lib)]
|
|
|
|
|
#![feature(i128_type)]
|
|
|
|
|
#![cfg_attr(all(target_arch = "arm",
|
|
|
|
|
not(any(target_env = "gnu", target_env = "musl")),
|
|
|
|
|
target_os = "linux",
|
|
|
|
|
test), no_std)]
|
|
|
|
|
|
2017-04-11 11:24:33 -05:00
|
|
|
// FIXME(#137)
|
2017-04-11 15:08:52 -05:00
|
|
|
// FIXME(#158)
|
2017-04-11 15:17:05 -05:00
|
|
|
#[cfg(not(any(target_arch = "mips", windows)))]
|
2017-04-10 14:38:17 -05:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/modti3.rs"));
|