From 3956bf056befd69f4790cc447500278a93f15840 Mon Sep 17 00:00:00 2001 From: gnzlbg <gonzalobg88@gmail.com> Date: Tue, 14 May 2019 12:16:00 +0200 Subject: [PATCH] Skip verification of gettimeofday on FreeBSD --- libc-test/build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libc-test/build.rs b/libc-test/build.rs index 567fa975..311a0f99 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -1813,6 +1813,9 @@ fn test_freebsd(target: &str) { "execvpe" | "fexecve" => true, + // FIXME: for some reason, our signature is wrong + "gettimeofday" => true, + // The `uname` function in freebsd is now an inline wrapper that // delegates to another, but the symbol still exists, so don't check // the symbol. -- GitLab