Browse Source

Assume no underline suffixes on symbols when compiling with ifx on Windows

tags/v0.3.29
Martin Kroeker GitHub 1 year ago
parent
commit
5c9417d306
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      lapack-netlib/LAPACKE/include/lapacke_config.h

+ 7
- 1
lapack-netlib/LAPACKE/include/lapacke_config.h View File

@@ -67,8 +67,14 @@ extern "C" {
#define lapack_logical lapack_int
#endif

#if defined(_MSC_VER) && defined(__INTEL_CLANG_COMPILER)
#define LAPACK_COMPLEX_STRUCTURE
#define LAPACK_GLOBAL(lcname,UCNAME) lcname
#define NOCHANGE
#endif

#ifndef LAPACK_COMPLEX_CUSTOM
#if defined(_MSC_VER)
#if defined(_MSC_VER) && !defined(__INTEL_CLANG_COMPILER)
#define _CRT_USE_C_COMPLEX_H
#include <complex.h>
#define LAPACK_COMPLEX_CUSTOM


Loading…
Cancel
Save