joshuakortje
joshuakortje
My lapacke_mangling.h file is not in that directory and I don't see one actually. I did eventually come to the conclusion that LAPACK is not installed correctly and I'm having...
Ok. I think I have gotten LAPACK installed correctly now. I eventually figured out that I had to configure CMake to generate a makefile for MinGW instead of for Visual...
Thank you for your continued support. I am trying to go the route of the Stack Overflow post that you linked, but that appears to still give errors. I think...
That article makes it seem like I should actually be able to just replace `std::complex` with `_Fcomplex` (and similarly for the double type). So I replaced those lines with ```...
The warnings are pointing to the following lines. It is the 5 lines that are assigning the m, lda, p, ldb, and n variables. I assumed that it was simply...
Ok. Maybe I can try to throw in a simple runtime check and when it is running we'll see if the types are compatible. I ran `dumpbin.exe` on the lib...
Doing a little more digging, I found this thread: https://stackoverflow.com/questions/6422478/linking-a-lib-and-def-files/6480464#6480464 I notice that for my case the `dll.a` seems to work (find the correct functions) whereas the `.lib` does not....