Skip to content

Commit 66e0f1e

Browse files
authored
Merge pull request #5178 from martin-frbg/lapack_cplx_dummy
Add dummy implementations of make_complex_(float/double) to simplify Windows DLL linking
2 parents 1ba0265 + 8a418b1 commit 66e0f1e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

lapack-netlib/LAPACKE/utils/lapacke_make_complex_double.c

+2
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ lapack_complex_double lapack_make_complex_double( double re, double im ) {
4848
#endif
4949
return z;
5050
}
51+
#else
52+
lapack_complex_double lapack_make_complex_double( double re, double im ) {}
5153
#endif

lapack-netlib/LAPACKE/utils/lapacke_make_complex_float.c

+2
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ lapack_complex_float lapack_make_complex_float( float re, float im ) {
4848
#endif
4949
return z;
5050
}
51+
#else
52+
lapack_complex_float lapack_make_complex_float( float re, float im ) {}
5153
#endif

0 commit comments

Comments
 (0)