Hide more types to fix build (#29)

This commit is contained in:
gentoo90
2017-12-22 21:47:01 +02:00
parent 8f41f2ad49
commit 9b780bc5f1

View File

@ -95,7 +95,12 @@ fn main() {
.hide_type("FP_INFINITE") .hide_type("FP_INFINITE")
.hide_type("FP_ZERO") .hide_type("FP_ZERO")
.hide_type("FP_SUBNORMAL") .hide_type("FP_SUBNORMAL")
.hide_type("FP_NORMAL"); .hide_type("FP_NORMAL")
.hide_type("FP_INT_UPWARD")
.hide_type("FP_INT_DOWNWARD")
.hide_type("FP_INT_TOWARDZERO")
.hide_type("FP_INT_TONEARESTFROMZERO")
.hide_type("FP_INT_TONEAREST");
for d in include_dirs { for d in include_dirs {
builder = builder.clang_arg(format!("-I{}", d.to_string_lossy())); builder = builder.clang_arg(format!("-I{}", d.to_string_lossy()));