From 9b780bc5f18a1f08e4b08dc7cd3a023f60bb4285 Mon Sep 17 00:00:00 2001 From: gentoo90 Date: Fri, 22 Dec 2017 21:47:01 +0200 Subject: [PATCH] Hide more types to fix build (#29) --- build.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 329ea20..83d8b3a 100644 --- a/build.rs +++ b/build.rs @@ -95,7 +95,12 @@ fn main() { .hide_type("FP_INFINITE") .hide_type("FP_ZERO") .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 { builder = builder.clang_arg(format!("-I{}", d.to_string_lossy()));