diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/base/hmatrix.cabal | 2 | ||||
-rw-r--r-- | packages/base/src/Internal/C/vector-aux.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/packages/base/hmatrix.cabal b/packages/base/hmatrix.cabal index 7b25349..5e4f3ce 100644 --- a/packages/base/hmatrix.cabal +++ b/packages/base/hmatrix.cabal | |||
@@ -25,6 +25,7 @@ build-type: Simple | |||
25 | extra-source-files: THANKS.md CHANGELOG | 25 | extra-source-files: THANKS.md CHANGELOG |
26 | 26 | ||
27 | extra-source-files: src/Internal/C/lapack-aux.h | 27 | extra-source-files: src/Internal/C/lapack-aux.h |
28 | src/C/windows_random_r.h | ||
28 | 29 | ||
29 | flag openblas | 30 | flag openblas |
30 | description: Link with OpenBLAS (https://github.com/xianyi/OpenBLAS) optimized libraries. | 31 | description: Link with OpenBLAS (https://github.com/xianyi/OpenBLAS) optimized libraries. |
@@ -77,6 +78,7 @@ library | |||
77 | 78 | ||
78 | C-sources: src/Internal/C/lapack-aux.c | 79 | C-sources: src/Internal/C/lapack-aux.c |
79 | src/Internal/C/vector-aux.c | 80 | src/Internal/C/vector-aux.c |
81 | src/C/windows_random_r.c | ||
80 | 82 | ||
81 | 83 | ||
82 | extensions: ForeignFunctionInterface, | 84 | extensions: ForeignFunctionInterface, |
diff --git a/packages/base/src/Internal/C/vector-aux.c b/packages/base/src/Internal/C/vector-aux.c index b165fab..a370214 100644 --- a/packages/base/src/Internal/C/vector-aux.c +++ b/packages/base/src/Internal/C/vector-aux.c | |||
@@ -7,7 +7,7 @@ typedef float complex TCF; | |||
7 | #undef complex | 7 | #undef complex |
8 | 8 | ||
9 | #include "lapack-aux.h" | 9 | #include "lapack-aux.h" |
10 | #include "custom_random_r.h" | 10 | #include "windows_random_r.h" |
11 | 11 | ||
12 | #define V(x) x##n,x##p | 12 | #define V(x) x##n,x##p |
13 | 13 | ||