Skip to content

Commit 5c9417d

Browse files
authored
Assume no underline suffixes on symbols when compiling with ifx on Windows
1 parent 5d81e51 commit 5c9417d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lapack-netlib/LAPACKE/include/lapacke_config.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,14 @@ extern "C" {
6767
#define lapack_logical lapack_int
6868
#endif
6969

70+
#if defined(_MSC_VER) && defined(__INTEL_CLANG_COMPILER)
71+
#define LAPACK_COMPLEX_STRUCTURE
72+
#define LAPACK_GLOBAL(lcname,UCNAME) lcname
73+
#define NOCHANGE
74+
#endif
75+
7076
#ifndef LAPACK_COMPLEX_CUSTOM
71-
#if defined(_MSC_VER)
77+
#if defined(_MSC_VER) && !defined(__INTEL_CLANG_COMPILER)
7278
#define _CRT_USE_C_COMPLEX_H
7379
#include <complex.h>
7480
#define LAPACK_COMPLEX_CUSTOM

0 commit comments

Comments
 (0)