Hi,
When building a product using a custom dll of MKL (version - update 4 2016) on windows.I get the following error- 'error LNK2019: unresolved external symbol _sdot_direct referenced in function _mkl_dc_sdot_convert '
Do you know which function(s) I need to add to my function file in order to eliminate this error?
Thanks
Eran
链接已复制
Could you share the following two to us, please?
- the unresolved external symbol list, when you compile your application without linking to MKL libraries.
- the MKL function name list file for creating your custom library.
Dear customer,
The symbol "sdot_direct" is defined in interface library (both lp64 & ilp64, static & dynamic). If your architecture is 64 bits, the lp64 will be assumed to link for default even you forget to specify. But for 32 architecture, might be called convention by microsoft lib. Could you please tell me your architecture? And another idea, you could use some ldd tools (dependency walker) watching the dependencies of your custom dll. You will easily find if those required dll/lib has been depended on. Thanks.
Best regards,
Fiona