aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas/xerbla.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'blas/xerbla.cpp')
-rw-r--r--blas/xerbla.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/blas/xerbla.cpp b/blas/xerbla.cpp
new file mode 100644
index 000000000..ce43d3c38
--- /dev/null
+++ b/blas/xerbla.cpp
@@ -0,0 +1,16 @@
+
+#include <iostream>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+int xerbla_(char * msg, int *info, int)
+{
+ std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n";
+}
+
+#ifdef __cplusplus
+}
+#endif