Refs #682. Enable LAPACK_COMPLEX_STRUCTURE when __ANDROID_API_ < 21.
This commit is contained in:
parent
839395fc25
commit
a550431ee6
|
@ -34,6 +34,13 @@
|
||||||
#ifndef _LAPACKE_CONFIG_H_
|
#ifndef _LAPACKE_CONFIG_H_
|
||||||
#define _LAPACKE_CONFIG_H_
|
#define _LAPACKE_CONFIG_H_
|
||||||
|
|
||||||
|
//For Android
|
||||||
|
#if defined(__ANDROID__)
|
||||||
|
#if __ANDROID_API__ < 21
|
||||||
|
#define LAPACK_COMPLEX_STRUCTURE
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#if defined(LAPACK_COMPLEX_CPP)
|
#if defined(LAPACK_COMPLEX_CPP)
|
||||||
#include <complex>
|
#include <complex>
|
||||||
|
|
Loading…
Reference in New Issue