Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Using Dll across Network

Robert_S_6
Beginner
866 Views
I have created dll's that are going to be used across a network. Not all of the users are going to have fortran installed on their computer. I realize thatI need to redistribute someof the Intel libraries for this to succeed. Where do I need to put the Intellibraries so that everyone will be able to run the dll's?
Bob
0 Kudos
2 Replies
Steven_L_Intel1
Employee
866 Views
I am not sure what you mean by "using a dll across a network". But the standard search rules for DLLs apply. DLLs are looked for in:
  1. The user's current directory
  2. The directory where the EXE is located
  3. Directories listed in PATH
  4. The Windows directory
  5. The Windows System directory

I may have the order of these off somewhat. You will need to put the relevant DLLs in one of these locations. Note that "The directory where the DLL is located" isn't in the list above - Windows doesn't look for associated DLLs in the directory the first DLL was found.

0 Kudos
Robert_S_6
Beginner
866 Views

Steve,

I have a directory G:Directory that i use to store the dll's on a server.I have anAccessmde on each computer that runs the appropriate dll when called (C:Directory). Anyway, I will tryto place the libraries in these folders to run the dll.

Bob

0 Kudos
Reply