OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. OpenBLAS is an open source project supported by Lab of Parallel Software and Computational Science, ISCAS. This package builds the serial library. Needs patching and testing on platforms besides Linux
16 lines
314 B
C
16 lines
314 B
C
$NetBSD: patch-cpuid_ia64.c,v 1.1 2020/11/05 16:31:45 bacon Exp $
|
|
|
|
FreeBSD does not have sysinfo in base
|
|
|
|
--- cpuid_ia64.c.orig 2015-10-27 20:44:50 UTC
|
|
+++ cpuid_ia64.c
|
|
@@ -38,7 +38,9 @@
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
+#ifdef linux
|
|
#include <sys/sysinfo.h>
|
|
+#endif
|
|
#include "cpuid.h"
|
|
|
|
#ifdef __ECC
|