2017-04-11 03:38:17 +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-04-12 00:24:33 +08:00
|
|
|
// FIXME(#137)
|
2017-06-25 03:22:31 +08:00
|
|
|
#[cfg(not(target_arch = "mips"))]
|
2017-04-11 03:38:17 +08:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/udivti3.rs"));
|