2017-05-06 11:20:20 +08: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-09-23 12:31:27 +08:00
|
|
|
#![cfg(not(target_arch = "mips"))] // FIXME(#168)
|
2017-05-06 11:20:20 +08:00
|
|
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/floattidf.rs"));
|