mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-27 06:30:28 +08:00
24 lines
381 B
C++
24 lines
381 B
C++
|
|
#include <iostream>
|
|
|
|
#if (defined __GNUC__) && (!defined __MINGW32__)
|
|
#define EIGEN_WEAK_LINKING __attribute__ ((weak))
|
|
#else
|
|
#define EIGEN_WEAK_LINKING
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
EIGEN_WEAK_LINKING int xerbla_(const char * msg, int *info, int)
|
|
{
|
|
std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n";
|
|
return 0;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|