I trying to use matrix inversion functions available in alglib for my code but I'm unable to compile it.
Code:
#include "./out/inv.h"
#include "./out/blas.h"
#include "./out/ap.h"
I give the following command: $gcc matinv.cpp src/ap.cpp src/inv.cpp src/blas.cpp
but receive this error:
Code:
src/inv.cpp:27: fatal e rror: stdafx.h: No such file or directory
compilation terminated.
src/blas.cpp:21: fatal error: stdafx.h: No such file or directory
compilation terminated.
I understand that there are many more functions which are being used and I'm missing those .cpp files but is there a way to pass all the .cpp files in directory src/ to the compiler. Please help.
Thanks,
Ankush.