- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I want run a DLL that is compiled with Fortran11in another computer.
It works in computers that have Fortran11 (win XP) or computers with Win7, but itdoesn'twork in computers thatdoesn'thave Fortran11
Which files must be installed with the DLL.
Thanks a lot ,
링크가 복사됨
3 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
You need to use "Dependency Walker" to identify all the external libraries used by your DLL. If you don't want to install runtime libraries it is better to link statically your dll with the libraries (/libs:static compiler directive; even if this will slightly increase the dll size).
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Anyway, Intel redistributables setup is here, in case you need it (those are the same ones that are shipped with the compiler, just more neatly packaged):
http://software.intel.com/en-us/articles/redistributable-libraries-of-the-intel-c-and-fortran-compiler-for-windows/
http://software.intel.com/en-us/articles/redistributable-libraries-of-the-intel-c-and-fortran-compiler-for-windows/
