setup:
- Visual Studio 2017
- Intel Parallel Studio 2018
- Intel Fortran Compiler Classic
VS solution:
- Project A, contains a subroutine "1" which calls MKL Pardiso
- Project B, a unit test project that calls subroutine "1"
Solution builds fine in Debug/64-bit, but Project B has a linker error in Debug/x86:
error LNK2019: unresolved external symbol _PARDISO@68 referenced in function "1"
I reference all of the MKL libs in Project B, for both platforms.
Question: what am I missing?