We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d320422 commit 1a429b7Copy full SHA for 1a429b7
src/libblastrampoline.h
@@ -7,6 +7,8 @@ extern "C" {
7
// This shamelessly stolen from https://github.com/JuliaLang/julia/blob/master/src/support/platform.h
8
#if defined(__FreeBSD__)
9
#define _OS_FREEBSD_
10
+#elif defined(__OpenBSD__)
11
+#define _OS_OPENBSD_
12
#elif defined(__linux__)
13
#define _OS_LINUX_
14
#elif defined(_WIN32) || defined(_WIN64)
src/libblastrampoline_internal.h
@@ -24,7 +24,7 @@
24
#include <dlfcn.h>
25
#endif
26
27
-#ifdef _OS_FREEBSD_
+#if defined(_OS_FREEBSD_) || defined(_OS_OPENBSD_)
28
#include <stddef.h>
29
#include <sys/sysctl.h>
30
0 commit comments