Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Comunicados
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

Using Dll across Network

Robert_S_6
Principiante
668 Visualizações
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 Respostas
Steven_L_Intel1
Funcionário
668 Visualizações
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.

Robert_S_6
Principiante
668 Visualizações

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

Responder