Trouble with file location in excel/fortran dll connection

后端 未结 6 1854

Platform: WinXP SP2, Intel Fortran 11, Excel 2007

I\'m having trouble connecting a dll file with excel.

The dll file is relatively simple:

su         


        
6条回答
  •  我在风中等你
    2020-12-21 19:07

    I had the same recently with ifort 14, and the problem disappears when I compile with

    ifort /dll /libs:static /threads
    

    Instead of just

    ifort /dll
    

    The message "file not found" often arise when the DLL has a dependency on another DLL which is not on system path (I had this with gfortran, and a DLL in MinGW32\bin, for instance). But I didn't find such a dependency here, rather strange.

提交回复
热议问题