From b3e82b579baafaa2002e51a9cde68643087d455c Mon Sep 17 00:00:00 2001 From: Malcolm Smith Date: Mon, 16 Apr 2018 14:04:24 +0100 Subject: Add missing underscore to prototype in check_embedded_lapack --- numpy/distutils/system_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index d12381028..2a3ff2e52 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1882,7 +1882,7 @@ class openblas_lapack_info(openblas_info): c = customized_ccompiler() tmpdir = tempfile.mkdtemp() - s = """void zungqr(); + s = """void zungqr_(); int main(int argc, const char *argv[]) { zungqr_(); -- cgit v1.2.1