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

link: Warning LNK4098 in imsl 6.0 + VS2005 +IVF 10.1.014 +windows vista

kelaynak
Beginner
1,524 Views
Hello,

I am receiving the below warning message when I try to use fnl.f90 program given in imsl web site in visual studio 2005 while building it.
(it is a simple program for solving system of linear equations and the program code can be found in
http://www.vni.com/tech/imsl/gettingStarted/using/use_for_win.php

LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library

I am using Windows Vista + Visual studio2005 + Imsl fortran 6.0 +Intel visual fortran 10.1.014
I did necessary change in VS 2005 (add vni lib and also include imsl include)
Also I added include 'link_fnl_static.h' in program code.
Actually, the program is working and giving right result but I am just getting warning. I Am just trying to undertstang how I can solve this warning issue because in future it can cause problem.

Would you please help me?

Thank in advance
0 Kudos
13 Replies
TimP
Honored Contributor III
1,524 Views
Assuming this is 32-bit code, you may have a mixture of objects compiled with and without thread-safe options. I'm guessing you didn't choose a thread-safe option for your own code, and changing that (use /Qreentrancy or /Qopenmp, for example) would remove the warning. If your code asks for libc, while the vni library asks for libcmt, you would expect this warning, as only one of those can be used. I believe VS2008 supports only libcmt, and vni may be consistent with that, so you will see a different complaint if you try to link libc there.
0 Kudos
Steven_L_Intel1
Employee
1,524 Views
That example is poorly written - it has you add the INCLUDE lines for both the DLL and static libraries and does not clearly explain that you must choose ONE of these and not use both. Take out the one for the DLL libraries and you should be ok, but there's one other thing to do.

If you use the static libraries, add this after the INCLUDE of 'link_fnl_static.h':

!DEC$ OBJCOMMENT LIB:'libguide.lib'

This pulls in the OpenMP library that IMSL uses. You don't need this if you use the DLL libraries. If you do use the DLL IMSL libraries, please change your project property Fortran > Libraries > Use run-time library to "Multithread DLL".
0 Kudos
kelaynak
Beginner
1,524 Views

Tim,

Thanks you for reply and help.

I think it is32 bit code. You may look at the program that I gave it above web address link. It is very short program, and written for test purpose.

I use /Qopenmp (generate paralel code option) in the 'process open directives'(project in menu

0 Kudos
kelaynak
Beginner
1,524 Views

Dear Steve,

Thank you for reply.

1) I tried on static library, there is still warning

I added two lines to program source as seen in below; is it rightor something missing?

INCLUDE

'link_fnl_static.h'

!DEC$ OBJCOMMENT LIB:'libguide.lib'

2) I tried also in dll lib,

there is no warning but in that case, there is error in debugging and no result. The given error is

This application has failed to start because libifcoremd.dll was not found. Reinstalling the application may fix this problem.

0 Kudos
Steven_L_Intel1
Employee
1,524 Views
The DLL problem on execution is due to not having the Fortran run-time DLL folder in your PATH environment variable. This is supposed to be added automatically by the compiler install.

Right click on My Computer, select Properties, Advanced, Environment Variables. Under System Variables, select PATH and edit it. Add to the end:

;%IFORT_COMPILER10%IA32LIB

Don't forget the leading semicolon. Click OK, OK, OK. Now try running the program again.

With the static option selected, it seems you still have a mix of libraries. Right click on your project, select Properties, Fortran, Command Line. Copy the "project options" shown and paste into a reply here.
0 Kudos
kelaynak
Beginner
1,524 Views

1) Dll library option,

I checked everything that you said. Path was exactly the same. Therefore, I did not change anything. I still have the same error.

I am giving all the change that I made in studio 2005 in below. Actually I did them with the given instruction in compiler help menu.

2) Static option,

this is the copy of project (in menu)>properties >fortran>command line; all options;

/nologo /Zi /Od /gen-interfaces /Qopenmp /warn:interfaces /names:uppercase

/module:"Debug" /object:"Debug" /traceback /check:bounds /libs:static /threads /dbglibs /c

Is it the command line that you want?

The change in studio 2005;

1) I added the following to tools (in menu)> option part to lib and include respectively

C:program filesvniimslfnl600ia32lib

C:program filesvniimslfnl600ia32includedll

2) and in project (in menu)> properties

fortran>external procedures>calling convention>default

Fortran> external procedures>name case interpretation>upper case

Fortarn>external procedures>sting length argumen pass> after all arguments

Fortran>external procedures> append underscores to external names>no

Fortara>floating point>floating point exception handling>Produce nan,signed infiniies and denormal result

Linker>system>stack reserve size>6000000

Fortarn>language>process openmp directives>generate paralel code

I did also a change that you suggest for dll lib related runtime library (fortarn>libary) ;multitreat dll

0 Kudos
kelaynak
Beginner
1,524 Views

Is there any suggestion to solve this problem?

I dont know whether it is important or not but I choosed general development setting in the beginning of studio 2005 as default environment settings. Can it be related to it?

Thanks in advance

0 Kudos
Steven_L_Intel1
Employee
1,524 Views
Please paste a build log into a reply here - this will let me see exactly what you did. You can find the log (it's a .htm file) in the Debug or Release folder.
0 Kudos
kelaynak
Beginner
1,524 Views

Here it is for static one;

Build Log

Build started: Project: fnlstatic, Configuration: Debug|Win32

Output
Compiling with Intel Fortran Compiler 10.1.014 [IA-32]...
ifort /nologo /Zi /Od /gen-interfaces /Qopenmp /warn:interfaces /names:uppercase /module:"Debug" /object:"Debug" /traceback /check:bounds /libs:static /threads /dbglibs /c /Qvc8 /Qlocation,link,"C:Program FilesMicrosoft Visual Studio 8VCin" "C:UsersKelDocumentsVisual Studio 2005ProjectsfnlstaticfnlstaticSource1.F90"
Linking...
Link /OUT:"Debugfnlstatic.exe" /INCREMENTAL:NO /NOLOGO /MANIFEST /MANIFESTFILE:"C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.exe.intermediate.manifest" /DEBUG /PDB:"C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.pdb" /SUBSYSTEM:CONSOLE /STACK:6000000 /IMPLIB:"C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.lib" "DebugSource1.obj"
Link: executing 'link'
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library

Embedding manifest...
mt.exe /nologo /outputresource:"C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.exe;#1" /manifest "C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.exe.intermediate.manifest"

fnlstatic - 0 error(s), 1 warning(s)

0 Kudos
Steven_L_Intel1
Employee
1,524 Views
This is strange. Would you please change the Linker property General > Show Progress to "Display all progress messages", rebuild, and show the log?
0 Kudos
kelaynak
Beginner
1,524 Views
Build Log

Build started: Project: fnlstatic, Configuration: Debug|Win32

Output
Compiling with Intel Fortran Compiler 10.1.014 [IA-32]...
ifort /nologo /Zi /Od /gen-interfaces /Qopenmp /warn:interfaces /names:uppercase /module:"Debug" /object:"Debug" /traceback /check:bounds /libs:static /threads /dbglibs /c /Qvc8 /Qlocation,link,"C:Program FilesMicrosoft Visual Studio 8VCin" "C:UsersKelDocumentsVisual Studio 2005ProjectsfnlstaticfnlstaticSource1.F90"
Linking...
Link /OUT:"Debugfnlstatic.exe" /VERBOSE /INCREMENTAL:NO /NOLOGO /MANIFEST /MANIFESTFILE:"C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.exe.intermediate.manifest" /DEBUG /PDB:"C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.pdb" /SUBSYSTEM:CONSOLE /STACK:6000000 /IMPLIB:"C:UsersKelDocumentsVisual Studio 2005Projectsfnlstaticfnlstaticdebugfnlstatic.lib" "DebugSource1.obj"
Link: executing 'link'

Starting pass 1
Processed /DEFAULTLIB:imsl.lib
Processed /DEFAULTLIB:imslsuperlu.lib
Processed /DEFAULTLIB:imslscalar.lib
Processed /DEFAULTLIB:imslblas.lib
Processed /DEFAULTLIB:imsls_err.lib
Processed /DEFAULTLIB:imslmpistub.lib
Processed /DEFAULTLIB:lmgr.lib
Processed /DEFAULTLIB:kernel32.lib
Processed /DEFAULTLIB:user32.lib
Processed /DEFAULTLIB:netapi32.lib
Processed /DEFAULTLIB:advapi32.lib
Processed /DEFAULTLIB:gdi32.lib
Processed /DEFAULTLIB:comdlg32.lib
Processed /DEFAULTLIB:comctl32.lib
Processed /DEFAULTLIB:wsock32.lib
Processed /DEFAULTLIB:libcrvs.lib
Processed /DEFAULTLIB:libFNPload.lib
Processed /DEFAULTLIB:libsb.lib
Processed /DEFAULTLIB:ifconsol
Processed /DEFAULTLIB:libifcoremt
Processed /DEFAULTLIB:libifport
Processed /DEFAULTLIB:libguide
Processed /DEFAULTLIB:libmmt
Processed /DEFAULTLIB:LIBCMTD
Processed /DEFAULTLIB:libirc
Processed /DEFAULTLIB:svml_disp
Processed /DEFAULTLIB:OLDNAMES

Searching libraries
    Searching C:Program FilesVNIIMSLfnl600ia32libimsl.lib:
      Found _S_WRRRN1D
        Referenced in Source1.obj
        Loaded imsl.lib(s_wrrrn1d.obj)
      Found _WRRRN
        Referenced in imsl.lib(s_wrrrn1d.obj)
        Loaded imsl.lib(wrrrn.obj)
      Found _C1IARG
        Referenced in imsl.lib(wrrrn.obj)
        Loaded imsl.lib(c1iarg.obj)
      Found _C12ILE
        Referenced in imsl.lib(wrrrn.obj)
        Loaded imsl.lib(c12ile.obj)
      Found _W3RRN
        Referenced in imsl.lib(wrrrn.obj)
        Loaded imsl.lib(w3rrn.obj)
      Found _W2RRL
        Referenced in imsl.lib(wrrrn.obj)
        Loaded imsl.lib(w2rrl.obj)
      Found _WROPT
        Referenced in imsl.lib(w3rrn.obj)
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(wropt.obj)
      Found _W1LIN
        Referenced in imsl.lib(w3rrn.obj)
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(w1lin.obj)
      Found _W9RRL
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(w9rrl.obj)
      Found _W18RL
        Referenced in imsl.lib(w2rrl.
obj)
        Loaded imsl.lib(w18rl.obj)
      Found _W14RL
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(w14rl.obj)
      Found _FMTRR
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(fmtrr.obj)
      Found _W4RRL
        Referenced in imsl.lib(w2rrl.obj)
        Referenced in imsl.lib(w18rl.obj)
        Loaded imsl.lib(w4rrl.obj)
      Found _W5RRL
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(w5rrl.obj)
      Found _W13RL
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(w13rl.obj)
      Found _W11RL
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(w11rl.obj)
      Found _W3RRL
        Referenced in imsl.lib(w2rrl.obj)
        Loaded imsl.lib(w3rrl.obj)
      Found _AMACH
        Referenced in imsl.lib(w2rrl.obj)
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsl.lib(amach.obj)
      Found _PGOPT
        Referenced in imsl.lib(w1lin.obj)
        Referenced in imsl.lib(w18rl.obj)
        Loaded imsl.lib(pgopt.obj)
      Found _I1LEN
        Referenced in imsl.lib(w9rrl.obj)
        Referenced in imsl.lib(w4rrl.obj)
        Loaded imsl.lib(i1len.obj)
      Found _W15RL
        Referenced in imsl.lib(w9rrl.obj)
        Loaded imsl.lib(w15rl.obj)
      Found _ACHAR
        Referenced in imsl.lib(w9rrl.obj)
        Loaded imsl.lib(achar.obj)
      Found _IICSR
        Referenced in imsl.lib(w18rl.obj)
        Loaded imsl.lib(iicsr.obj)
      Found _W10RL
        Referenced in imsl.lib(w18rl.obj)
        Loaded imsl.lib(w10rl.obj)
      Found _W12RL
        Referenced in imsl.lib(fmtrr.obj)
        Referenced in imsl.lib(w13rl.obj)
        Loaded imsl.lib(w12rl.obj)
      Found _IFNAN
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsl.lib(ifnan.obj)
      Found _FMTX
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsl.lib(fmtx.obj)
      Found _I1MT
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsl.lib(i1mt.obj)
      Found _I1MAX
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsl.lib(i1max.obj)
      Found _F3TRR
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsl.lib(f3trr.obj)
      Found _W7RRL
        Referenced in imsl.lib(w5rrl.obj)
        Referenced in imsl.lib(w13rl.obj)
        Loaded imsl.lib(w7rrl.obj)
      Found _W6RRL
        Referenced in imsl.lib(w5rrl.obj)
        Referenced in imsl.lib(w13rl.obj)
        Loaded imsl.lib(w6rrl.obj)
      Found _W16RL
        Referenced in imsl.lib(w3rrl.obj)
        Loaded imsl.lib(w16rl.obj)
      Found _W17RL
        Referenced in imsl.lib(w3rrl.obj)
        Loaded imsl.lib(w17rl.obj)
      Found _W8RRL
        Referenced in imsl.lib(w3rrl.obj)
        Referenced in imsl.lib(w17rl.obj)
        Loaded imsl.lib(w8rrl.obj)
      Found _C1NTER
        Referenced in imsl.lib(w3rrl.obj)
        Referenced in imsl.lib(w16rl.obj)
        Referenced in imsl.lib(w17rl.obj)
        Loaded imsl.lib(c1nter.obj)
      Found _W1RI
        Referenced in imsl.lib(w3rrl.obj)
        Loaded imsl.lib(w1ri.obj)
      Found _CVTSI
        Referenced in imsl.lib(w7rrl.obj)
        Referenced in imsl.lib(w6rrl.obj)
        Loaded imsl.lib(cvtsi.obj)
      Found _W1ISS
        Referenced in imsl.lib(w1ri.obj)
        Loaded imsl.lib(w1iss.obj)
    Searching C:Program FilesVNIIMSLfnl600ia32libimslsuperlu.lib:
    Searching C:Program FilesVNIIMSLfnl60
0ia32libimslscalar.lib:
      Found _S_LSARG
        Referenced in Source1.obj
        Loaded imslscalar.lib(s_lsarg.obj)
      Found _LSARG
        Referenced in imslscalar.lib(s_lsarg.obj)
        Loaded imslscalar.lib(lsarg.obj)
      Found _L2ARG
        Referenced in imslscalar.lib(lsarg.obj)
        Loaded imslscalar.lib(l2arg.obj)
      Found _L2CRG
        Referenced in imslscalar.lib(l2arg.obj)
        Loaded imslscalar.lib(l2crg.obj)
      Found _LFIRG
        Referenced in imslscalar.lib(l2arg.obj)
        Loaded imslscalar.lib(lfirg.obj)
      Found _NR1RR
        Referenced in imslscalar.lib(l2crg.obj)
        Loaded imslscalar.lib(nr1rr.obj)
      Found _L2TRG
        Referenced in imslscalar.lib(l2crg.obj)
        Loaded imslscalar.lib(l2trg.obj)
      Found _LFSRG
        Referenced in imslscalar.lib(lfirg.obj)
        Loaded imslscalar.lib(lfsrg.obj)
    Searching C:Program FilesVNIIMSLfnl600ia32libimslblas.lib:
      Found _SSCAL
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imslscalar.lib(l2trg.obj)
        Loaded imslblas.lib(sscal.obj)
      Found _SASUM
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imslscalar.lib(nr1rr.obj)
        Loaded imslblas.lib(sasum.obj)
      Found _ISAMAX
        Referenced in imslscalar.lib(lfirg.obj)
        Referenced in imslscalar.lib(l2trg.obj)
        Loaded imslblas.lib(isamax.obj)
      Found _SGEMM
        Referenced in imslscalar.lib(l2trg.obj)
        Loaded imslblas.lib(sgemm.obj)
      Found _SGEMV
        Referenced in imslscalar.lib(l2trg.obj)
        Loaded imslblas.lib(sgemv.obj)
      Found _SSWAP
        Referenced in imslscalar.lib(l2trg.obj)
        Loaded imslblas.lib(sswap.obj)
      Found _SCOPY
        Referenced in imslscalar.lib(lfsrg.obj)
        Loaded imslblas.lib(scopy.obj)
    Searching C:Program FilesVNIIMSLfnl600ia32libimsls_err.lib:
      Found _E1PSH
        Referenced in imslscalar.lib(lfsrg.obj)
        Referenced in imslblas.lib(sgemm.obj)
        Referenced in imslblas.lib(sgemv.obj)
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imslscalar.lib(lfirg.obj)
        Referenced in imslscalar.lib(nr1rr.obj)
        Referenced in imslscalar.lib(l2trg.obj)
        Referenced in imsl.lib(i1max.obj)
        Referenced in imsl.lib(cvtsi.obj)
        Referenced in imslscalar.lib(lsarg.obj)
        Referenced in imslscalar.lib(l2arg.obj)
        Referenced in imsl.lib(amach.obj)
        Referenced in imsl.lib(pgopt.obj)
        Referenced in imsl.lib(achar.obj)
        Referenced in imsl.lib(fmtx.obj)
        Referenced in imsl.lib(wrrrn.obj)
        Referenced in imsl.lib(w2rrl.obj)
        Referenced in imsl.lib(wropt.obj)
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsls_err.lib(e1psh_lmf.obj)
      Found _E1LOCK
        Referenced in imsl.lib(wrrrn.obj)
        Loaded imsls_err.lib(e1lock.obj)
      Found _N1RTY
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imsl.lib(pgopt.obj)
        Referenced in imsl.lib(fmtx.obj)
        Referenced in imsl.lib(i1max.obj)
        Referenced in imslscalar.lib(l2arg.obj)
        Referenced in imsl.lib(wrrrn.obj)
        Referenced in imsl.lib(w2rrl.obj)
        Referenced in imsl.lib(wropt.obj)
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsls_err.lib(n1rty.obj)
      Found _E1POP
        Referenced in
 imslscalar.lib(lfsrg.obj)
        Referenced in imslblas.lib(sgemm.obj)
        Referenced in imslblas.lib(sgemv.obj)
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imslscalar.lib(lfirg.obj)
        Referenced in imslscalar.lib(nr1rr.obj)
        Referenced in imslscalar.lib(l2trg.obj)
        Referenced in imsl.lib(i1max.obj)
        Referenced in imsl.lib(cvtsi.obj)
        Referenced in imslscalar.lib(lsarg.obj)
        Referenced in imslscalar.lib(l2arg.obj)
        Referenced in imsl.lib(amach.obj)
        Referenced in imsl.lib(pgopt.obj)
        Referenced in imsl.lib(achar.obj)
        Referenced in imsl.lib(fmtx.obj)
        Referenced in imsl.lib(wrrrn.obj)
        Referenced in imsl.lib(w2rrl.obj)
        Referenced in imsl.lib(wropt.obj)
        Referenced in imsl.lib(fmtrr.obj)
        Loaded imsls_err.lib(e1pop.obj)
      Found _E1STI
        Referenced in imsls_err.lib(e1psh_lmf.obj)
        Referenced in imsls_err.lib(e1pop.obj)
        Referenced in imslscalar.lib(l2trg.obj)
        Referenced in imslscalar.lib(lfsrg.obj)
        Referenced in imslblas.lib(sgemm.obj)
        Referenced in imslblas.lib(sgemv.obj)
        Referenced in imslscalar.lib(l2arg.obj)
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imslscalar.lib(lfirg.obj)
        Referenced in imslscalar.lib(nr1rr.obj)
        Referenced in imsl.lib(pgopt.obj)
        Referenced in imsl.lib(achar.obj)
        Referenced in imsl.lib(cvtsi.obj)
        Referenced in imslscalar.lib(lsarg.obj)
        Referenced in imsl.lib(c1iarg.obj)
        Referenced in imsl.lib(c12ile.obj)
        Referenced in imsl.lib(w18rl.obj)
        Referenced in imsl.lib(amach.obj)
        Loaded imsls_err.lib(e1sti.obj)
      Found _E1STL
        Referenced in imsl.lib(cvtsi.obj)
        Referenced in imslblas.lib(sgemm.obj)
        Referenced in imslblas.lib(sgemv.obj)
        Referenced in imsls_err.lib(e1pop.obj)
        Referenced in imsl.lib(c1iarg.obj)
        Referenced in imsl.lib(c12ile.obj)
        Referenced in imsl.lib(w9rrl.obj)
        Referenced in imsl.lib(w15rl.obj)
        Loaded imsls_err.lib(e1stl.obj)
      Found _E1MES
        Referenced in imslblas.lib(sgemm.obj)
        Referenced in imslblas.lib(sgemv.obj)
        Referenced in imsls_err.lib(e1psh_lmf.obj)
        Referenced in imsls_err.lib(e1pop.obj)
        Referenced in imslscalar.lib(lfirg.obj)
        Referenced in imslscalar.lib(nr1rr.obj)
        Referenced in imslscalar.lib(l2trg.obj)
        Referenced in imslscalar.lib(lfsrg.obj)
        Referenced in imsl.lib(cvtsi.obj)
        Referenced in imslscalar.lib(lsarg.obj)
        Referenced in imslscalar.lib(l2arg.obj)
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imsl.lib(amach.obj)
        Referenced in imsl.lib(pgopt.obj)
        Referenced in imsl.lib(w15rl.obj)
        Referenced in imsl.lib(achar.obj)
        Referenced in imsl.lib(c1iarg.obj)
        Referenced in imsl.lib(c12ile.obj)
        Referenced in imsl.lib(w9rrl.obj)
        Referenced in imsl.lib(w18rl.obj)
        Loaded imsls_err.lib(e1mes.obj)
      Found _UMACH
        Referenced in imsl.lib(w1lin.obj)
        Referenced in imslscalar.lib(l2trg.obj)
        Loaded imsls_err.lib(umach.obj)
      Found _ICASE
        Referenced in imsl.lib(w9rrl.obj)
        Referenced in imsl.lib(iicsr.obj)
        Referenced in imsl.lib(w7rrl.obj)
    
    Loaded imsls_err.lib(icase.obj)
      Found _C1TCI
        Referenced in imsl.lib(w9rrl.obj)
        Referenced in imsls_err.lib(e1mes.obj)
        Loaded imsls_err.lib(c1tci.obj)
      Found _IMACH
        Referenced in imsls_err.lib(c1tci.obj)
        Referenced in imsl.lib(w14rl.obj)
        Referenced in imsl.lib(i1mt.obj)
        Referenced in imsl.lib(cvtsi.obj)
        Referenced in imsl.lib(w1iss.obj)
        Loaded imsls_err.lib(imach.obj)
      Found _IACHAR
        Referenced in imsl.lib(fmtrr.obj)
        Referenced in imsl.lib(w4rrl.obj)
        Referenced in imsl.lib(f3trr.obj)
        Referenced in imsls_err.lib(icase.obj)
        Loaded imsls_err.lib(iachar.obj)
      Found _C1TIC
        Referenced in imsl.lib(w17rl.obj)
        Referenced in imsl.lib(w8rrl.obj)
        Referenced in imsls_err.lib(e1sti.obj)
        Loaded imsls_err.lib(c1tic.obj)
      Found _N1RCD
        Referenced in imslscalar.lib(nr1rr.obj)
        Referenced in imslscalar.lib(lfsrg.obj)
        Referenced in imslscalar.lib(lsarg.obj)
        Referenced in imslscalar.lib(l2arg.obj)
        Referenced in imslscalar.lib(l2crg.obj)
        Referenced in imslscalar.lib(lfirg.obj)
        Loaded imsls_err.lib(n1rcd.obj)
      Found _E1STR
        Referenced in imslscalar.lib(l2arg.obj)
        Referenced in imslscalar.lib(l2crg.obj)
        Loaded imsls_err.lib(e1str.obj)
      Found _L1AME
        Referenced in imslblas.lib(sgemm.obj)
        Referenced in imslblas.lib(sgemv.obj)
        Loaded imsls_err.lib(l1ame.obj)
      Found _E1INIT
        Referenced in imsls_err.lib(e1psh_lmf.obj)
        Referenced in imsls_err.lib(e1sti.obj)
        Referenced in imsls_err.lib(e1stl.obj)
        Referenced in imsls_err.lib(e1str.obj)
        Loaded imsls_err.lib(e1init.obj)
      Found _e2psh
        Referenced in imsls_err.lib(e1psh_lmf.obj)
        Loaded imsls_err.lib(e2psh_lmf.obj)
module 'imsls_err.lib(e2psh_lmf.obj)' unsafe for SAFESEH image.
      Found _M1VECH
        Referenced in imsls_err.lib(n1rty.obj)
        Referenced in imsls_err.lib(n1rcd.obj)
        Loaded imsls_err.lib(m1vech.obj)
      Found _E1PRT
        Referenced in imsls_err.lib(n1rty.obj)
        Referenced in imsls_err.lib(e1pop.obj)
        Referenced in imsls_err.lib(e1mes.obj)
        Referenced in imsls_err.lib(n1rcd.obj)
        Loaded imsls_err.lib(e1prt.obj)
      Found _N1RGB
        Referenced in imsls_err.lib(e1pop.obj)
        Loaded imsls_err.lib(n1rgb.obj)
      Found _I1ERIF
        Referenced in imsls_err.lib(e1sti.obj)
        Referenced in imsls_err.lib(e1str.obj)
        Referenced in imsls_err.lib(e1prt.obj)
        Loaded imsls_err.lib(i1erif.obj)
      Found _E1INPL
        Referenced in imsls_err.lib(e1sti.obj)
        Referenced in imsls_err.lib(e1stl.obj)
        Referenced in imsls_err.lib(e1str.obj)
        Loaded imsls_err.lib(e1inpl.obj)
      Found _E1UCS
        Referenced in imsls_err.lib(e1mes.obj)
        Loaded imsls_err.lib(e1ucs.obj)
      Found _I1DX
        Referenced in imsls_err.lib(e1mes.obj)
        Referenced in imsls_err.lib(e1prt.obj)
        Loaded imsls_err.lib(i1dx.obj)
      Found _M1VE
        Referenced in imsls_err.lib(e1mes.obj)
        Referenced in imsls_err.lib(c1tic.obj)
        Referenced in imsls_err.lib(e1prt.obj)
        Referenced in imsls_err.lib(e1inpl.obj)
        Loaded imsls_err.lib(m1ve.obj)
      Found _imslf_flexlm
        
Referenced in imsls_err.lib(e2psh_lmf.obj)
        Loaded imsls_err.lib(flexlm.obj)
Processed /DEFAULTLIB:uuid.lib
module 'imsls_err.lib(flexlm.obj)' unsafe for SAFESEH image.
      Found _E3PRT
        Referenced in imsls_err.lib(e1prt.obj)
        Loaded imsls_err.lib(e3prt.obj)
      Found _I1X
        Referenced in imsls_err.lib(i1erif.obj)
        Referenced in imsls_err.lib(e1ucs.obj)
        Loaded imsls_err.lib(i1x.obj)
      Found _S1ANUM
        Referenced in imsls_err.lib(e1ucs.obj)
        Loaded imsls_err.lib(s1anum.obj)
      Found _I1CSTR
        Referenced in imsls_err.lib(i1dx.obj)
        Referenced in imsls_err.lib(s1anum.obj)
        Loaded imsls_err.lib(i1cstr.obj)
    Searching C:Program FilesVNIIMSLfnl600ia32libimslmpistub.lib:
    Searching C:Program FilesVNIIMSLfnl600ia32liblmgr.lib:
      Found _lc_get_config
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_config.obj)
Processed /DEFAULTLIB:LIBCMT
module 'lmgr.lib(lm_config.obj)' unsafe for SAFESEH image.
      Found _lc_set_attr
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_set_attr.obj)
module 'lmgr.lib(lm_set_attr.obj)' unsafe for SAFESEH image.
      Found _lc_hostname
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_hostname.obj)
module 'lmgr.lib(lm_hostname.obj)' unsafe for SAFESEH image.
      Found _lc_status
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(l_check.obj)
module 'lmgr.lib(l_check.obj)' unsafe for SAFESEH image.
      Found _lc_username
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_username.obj)
module 'lmgr.lib(lm_username.obj)' unsafe for SAFESEH image.
      Found _lc_userlist
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_userlist.obj)
module 'lmgr.lib(lm_userlist.obj)' unsafe for SAFESEH image.
      Found _lc_checkout
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_ckout.obj)
module 'lmgr.lib(lm_ckout.obj)' unsafe for SAFESEH image.
      Found _lc_perror
        Referenced in imsls_err.lib(flexlm.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(lm_perror.obj)
module 'lmgr.lib(lm_perror.obj)' unsafe for SAFESEH image.
      Found _lc_lic_where
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_lic_where.obj)
module 'lmgr.lib(lm_lic_where.obj)' unsafe for SAFESEH image.
      Found _lc_new_job
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_njob.obj)
module 'lmgr.lib(lm_njob.obj)' unsafe for SAFESEH image.
      Found _lc_get_errno
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(l_error.obj)
module 'lmgr.lib(l_error.obj)' unsafe for SAFESEH image.
      Found _lc_free_job
        Referenced in imsls_err.lib(flexlm.obj)
        Loaded lmgr.lib(lm_free_job.obj)
module 'lmgr.lib(lm_free_job.obj)' unsafe for SAFESEH image.
      Found _pcs2Wm4hg8t
        Referenced in lmgr.lib(lm_config.obj)
        Referenced in lmgr.lib(lm_lic_where.obj)
        Loaded lmgr.lib(l_init_file.obj)
module 'lmgr.lib(l_init_file.obj)' unsafe for SAFESEH image.
      Found _hQtW9tm19Pc4
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(lm_config.obj)
        Referenced
 in lmgr.lib(lm_hostname.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_userlist.obj)
        Loaded lmgr.lib(l_keyword.obj)
module 'lmgr.lib(l_keyword.obj)' unsafe for SAFESEH image.
      Found _g7muhvLOdG7
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(lm_perror.obj)
        Referenced in lmgr.lib(lm_config.obj)
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_userlist.obj)
        Loaded lmgr.lib(l_unixmt.obj)
module 'lmgr.lib(l_unixmt.obj)' unsafe for SAFESEH image.
      Found _amGsu98BbD34hHMiAF7rXA
        Referenced in lmgr.lib(lm_config.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_serv_msg.obj)
module 'lmgr.lib(l_serv_msg.obj)' unsafe for SAFESEH image.
      Found _kZYWFclw5fnZL
        Referenced in lmgr.lib(lm_config.obj)
        Loaded lmgr.lib(l_borrow.obj)
module 'lmgr.lib(l_borrow.obj)' unsafe for SAFESEH image.
      Found _yn8JI
        Referenced in lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_error.obj)
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(l_keyword.obj)
        Referenced in lmgr.lib(lm_config.obj)
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_userlist.obj)
        Loaded lmgr.lib(l_encode.obj)
module 'lmgr.lib(l_encode.obj)' unsafe for SAFESEH image.
      Found _bH83nK
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(l_serv_msg.obj)
        Referenced in lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(lm_perror.obj)
        Referenced in lmgr.lib(l_error.obj)
        Referenced in lmgr.lib(lm_free_job.obj)
        Referenced in lmgr.lib(lm_config.obj)
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_userlist.obj)
        Loaded lmgr.lib(l_malloc.obj)
module 'lmgr.lib(l_malloc.obj)' unsafe for SAFESEH image.
      Found _lIV9eHucP6flcQwpAd
        Referenced in lmgr.lib(lm_config.obj)
        Loaded lmgr.lib(flex_version_sig.obj)
module 'lmgr.lib(flex_version_sig.obj)' unsafe for SAFESEH image.
      Found _lc_init_simple_composite
        Referenced in lmgr.lib(lm_set_attr.obj)
        Loaded lmgr.lib(lm_scompid.obj)
module 'lmgr.lib(lm_scompid.obj)' unsafe for SAFESEH image.
      Found _lmZenQzrPN
        Referenced in lmgr.lib(lm_set_attr.obj)
        Loaded lmgr.lib(lm_get_redir.obj)
module 'lmgr.lib(lm_get_redir.obj)' unsafe for SAFESEH image.
      Found _lXNZHr_LbUW_LEfa
        Referenced in lmgr.lib(lm_set_attr.obj)
        Loaded lmgr.lib(lm_init.obj)
module 'lmgr.lib(lm_init.obj)' unsafe for SAFESEH image.
      Found _o6Z_UpfZte66t
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(flex_version_sig.obj)
        Referenced in lmgr.lib(lm_init.obj)
        Loaded lmgr.lib(flex_flags.obj)
module 'lmgr.lib(flex_flags.obj)' unsafe for SAFESEH image.
      Found _uRrXviJDZc2MKy
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(l_unixmt.obj)
        Loaded lmgr.lib(l_timers.obj)
module 'lmg
r.lib(l_timers.obj)' unsafe for SAFESEH image.
      Found _d7rjgT55
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(lm_init.obj)
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(lm_perror.obj)
        Loaded lmgr.lib(l_getenv.obj)
module 'lmgr.lib(l_getenv.obj)' unsafe for SAFESEH image.
      Found _flBXvOYVP
        Referenced in lmgr.lib(l_serv_msg.obj)
        Referenced in lmgr.lib(flex_version_sig.obj)
        Referenced in lmgr.lib(lm_init.obj)
        Referenced in lmgr.lib(l_timers.obj)
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_userlist.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_getattr.obj)
module 'lmgr.lib(l_getattr.obj)' unsafe for SAFESEH image.
      Found _wmXTFyEgzCF
        Referenced in lmgr.lib(flex_version_sig.obj)
        Referenced in lmgr.lib(l_getenv.obj)
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(l_keyword.obj)
        Loaded lmgr.lib(l_uppercase.obj)
module 'lmgr.lib(l_uppercase.obj)' unsafe for SAFESEH image.
      Found _t2tCeYGLkBqk4kddwuWEZQ
        Referenced in lmgr.lib(l_getenv.obj)
        Referenced in lmgr.lib(lm_set_attr.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(l_serv_msg.obj)
        Loaded lmgr.lib(l_job.obj)
module 'lmgr.lib(l_job.obj)' unsafe for SAFESEH image.
      Found _jjFZnwOYiW7Ba
        Referenced in lmgr.lib(lm_hostname.obj)
        Referenced in lmgr.lib(flex_version_sig.obj)
        Referenced in lmgr.lib(l_job.obj)
        Loaded lmgr.lib(l_safestring.obj)
module 'lmgr.lib(l_safestring.obj)' unsafe for SAFESEH image.
      Found _kirdZQbv6Occ5BKTtG2a_
        Referenced in lmgr.lib(lm_hostname.obj)
        Loaded lmgr.lib(FlexInetAddress.obj)
module 'lmgr.lib(FlexInetAddress.obj)' unsafe for SAFESEH image.
      Found _bO2CzQ1cfEnJeFEh
        Referenced in lmgr.lib(lm_hostname.obj)
        Referenced in lmgr.lib(lm_username.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l__gethostname.obj)
module 'lmgr.lib(l__gethostname.obj)' unsafe for SAFESEH image.
      Found _jlqOnNRx
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(lm_get_redir.obj)
        Loaded lmgr.lib(l_get_id.obj)
module 'lmgr.lib(l_get_id.obj)' unsafe for SAFESEH image.
      Found _yM5nVeoeFwXiEGZRQUAc
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_serv_msg.obj)
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(l_allfeat.obj)
module 'lmgr.lib(l_allfeat.obj)' unsafe for SAFESEH image.
      Found _yZj42kmh
        Referenced in lmgr.lib(l_allfeat.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_serv_msg.obj)
        Referenced in lmgr.lib(lm_get_redir.obj)
        Loaded lmgr.lib(l_lfgets.obj)
module 'lmgr.lib(l_lfg
ets.obj)' unsafe for SAFESEH image.
      Found _h1tF9MrKphg4
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_serv_msg.obj)
        Loaded lmgr.lib(l_rcvmsg.obj)
module 'lmgr.lib(l_rcvmsg.obj)' unsafe for SAFESEH image.
      Found _f8FOv8JN
        Referenced in lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(l_rcvmsg.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_userlist.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_serv_msg.obj)
        Loaded lmgr.lib(l_sndmsg.obj)
module 'lmgr.lib(l_sndmsg.obj)' unsafe for SAFESEH image.
      Found _clgXx6_GIrA
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(flex_version_sig.obj)
        Loaded lmgr.lib(l_config.obj)
module 'lmgr.lib(l_config.obj)' unsafe for SAFESEH image.
      Found _nzRTgwiXmMD9uTQ
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_init.obj)
        Loaded lmgr.lib(l_fdata.obj)
module 'lmgr.lib(l_fdata.obj)' unsafe for SAFESEH image.
      Found _lc_disconn
        Referenced in lmgr.lib(l_sndmsg.obj)
        Referenced in lmgr.lib(l_check.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(lm_free_job.obj)
        Referenced in lmgr.lib(l_rcvmsg.obj)
        Loaded lmgr.lib(lm_disconn.obj)
module 'lmgr.lib(lm_disconn.obj)' unsafe for SAFESEH image.
      Found _teMO02ySUPLv
        Referenced in lmgr.lib(l_check.obj)
        Loaded lmgr.lib(l_file_stub.obj)
module 'lmgr.lib(l_file_stub.obj)' unsafe for SAFESEH image.
      Found _jXJIYfNtYamNv
        Referenced in lmgr.lib(lm_username.obj)
        Loaded lmgr.lib(flex_utils.obj)
module 'lmgr.lib(flex_utils.obj)' unsafe for SAFESEH image.
      Found _jl72FExuK
        Referenced in lmgr.lib(lm_userlist.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_connect.obj)
module 'lmgr.lib(l_connect.obj)' unsafe for SAFESEH image.
      Found _nIsQHXwZd8wt0Ny07is
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_dialogs.obj)
module 'lmgr.lib(l_dialogs.obj)' unsafe for SAFESEH image.
      Found _taz62ieWEsbxYmAFT
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(wsock32.obj)
module 'lmgr.lib(wsock32.obj)' unsafe for SAFESEH image.
      Found _vvyeav8C0EHFY_r
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(lm_perror.obj)
        Referenced in lmgr.lib(l_getenv.obj)
        Loaded lmgr.lib(winflex.obj)
module 'lmgr.lib(winflex.obj)' unsafe for SAFESEH image.
      Found _eQND4E
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_ts.obj)
module 'lmgr.lib(l_ts.obj)' unsafe for SAFESEH image.
      Found _zKfCKF8J_
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(l_baddate.obj)
module 'lmgr.lib(l_baddate.obj)' unsafe for SAFESEH image.
      Found _wm0QG1fnk
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_ctype.obj)
module 'lmgr.lib(l_ctype.obj)' unsafe for SAFESEH image.
      Found _hs4RHqZxZDwSUx_
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_platfm.obj)
module 'lmgr.lib(l_platfm.obj)' unsafe for SAFESEH image.
      Found _jh44ZKL6rTE3
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in
 lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(l_allfeat.obj)
        Loaded lmgr.lib(l_asc_hostid.obj)
module 'lmgr.lib(l_asc_hostid.obj)' unsafe for SAFESEH image.
      Found _nJJrAt
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(l_host.obj)
module 'lmgr.lib(l_host.obj)' unsafe for SAFESEH image.
      Found _aM52TSsHlS
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_date.obj)
module 'lmgr.lib(l_date.obj)' unsafe for SAFESEH image.
      Found _iIVCHciE1KP6XDvN5SmtNQXN
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_connect.obj)
        Loaded lmgr.lib(flex_socket.obj)
module 'lmgr.lib(flex_socket.obj)' unsafe for SAFESEH image.
      Found _xLjgvT6ai1AmM
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_commbuffer.obj)
module 'lmgr.lib(l_commbuffer.obj)' unsafe for SAFESEH image.
      Found _vvWX4NPLYueEPXICYfc
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_msgcheckout.obj)
module 'lmgr.lib(l_msgcheckout.obj)' unsafe for SAFESEH image.
      Found _goQ2VAXPxSK
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_handshake.obj)
module 'lmgr.lib(l_handshake.obj)' unsafe for SAFESEH image.
      Found _uWbqras7YQq
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(lm_gethostid.obj)
module 'lmgr.lib(lm_gethostid.obj)' unsafe for SAFESEH image.
      Found _knAVdxofpp9t5xwm1
        Referenced in lmgr.lib(lm_ckout.obj)
        Loaded lmgr.lib(l_msghostid.obj)
module 'lmgr.lib(l_msghostid.obj)' unsafe for SAFESEH image.
      Found _zZNiYXVIuumq
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_host.obj)
        Referenced in lmgr.lib(lm_gethostid.obj)
        Loaded lmgr.lib(lm_getid_typ.obj)
module 'lmgr.lib(lm_getid_typ.obj)' unsafe for SAFESEH image.
      Found _mGhgn
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(l_getattr.obj)
        Loaded lmgr.lib(l_key.obj)
module 'lmgr.lib(l_key.obj)' unsafe for SAFESEH image.
      Found _gdnokn7MvV65t
        Referenced in lmgr.lib(l_host.obj)
        Referenced in lmgr.lib(lm_ckout.obj)
        Referenced in lmgr.lib(flex_version_sig.obj)
        Referenced in lmgr.lib(l_allfeat.obj)
        Referenced in lmgr.lib(l_asc_hostid.obj)
        Loaded lmgr.lib(l_hostid.obj)
module 'lmgr.lib(l_hostid.obj)' unsafe for SAFESEH image.
      Found _tQ4d42XIej1O3WG2GhoZx
        Referenced in lmgr.lib(lm_njob.obj)
        Loaded lmgr.lib(l_cvd.obj)
module 'lmgr.lib(l_cvd.obj)' unsafe for SAFESEH image.
      Found _u4XLDcyWg6BOl6S0tRg
        Referenced in lmgr.lib(lm_free_job.obj)
        Loaded lmgr.lib(l_internaldata.obj)
module 'lmgr.lib(l_internaldata.obj)' unsafe for SAFESEH image.
      Found _dHOdW0dYfODNoj
        Referenced in lmgr.lib(lm_free_job.obj)
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(lm_disconn.obj)
        Referenced in lmgr.lib(l_connect.obj)
        Loaded lmgr.lib(l_pcconn.obj)
module 'lmgr.lib(l_pcconn.obj)' unsafe for SAFESEH image.
      Found _c4Om9Vr8F2
        Referenced in lmgr.lib(l_init_file.obj)
        Loaded lmgr.lib(l_package.obj)
module 'lmgr.lib(l_package.obj)' unsafe for SAFESEH image.
      Found _kS6pIH1IKf2
        Referenced in lmgr.lib(l_init_file.obj)
        Loaded lmgr.lib(l_supe
rsede.obj)
module 'lmgr.lib(l_supersede.obj)' unsafe for SAFESEH image.
      Found _l_getActivations
        Referenced in lmgr.lib(l_init_file.obj)
        Loaded lmgr.lib(l_getActivations.obj)
module 'lmgr.lib(l_getActivations.obj)' unsafe for SAFESEH image.
      Found _jkwdlxbRf1xri7fQr
        Referenced in lmgr.lib(l_init_file.obj)
        Loaded lmgr.lib(l_master_lis.obj)
module 'lmgr.lib(l_master_lis.obj)' unsafe for SAFESEH image.
      Found _fCFPwGcyLmc
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(lm_get_redir.obj)
        Referenced in lmgr.lib(l_master_lis.obj)
        Loaded lmgr.lib(l_open_file.obj)
module 'lmgr.lib(l_open_file.obj)' unsafe for SAFESEH image.
      Found _fpWLjhtQ
        Referenced in lmgr.lib(l_init_file.obj)
        Loaded lmgr.lib(l_finder.obj)
module 'lmgr.lib(l_finder.obj)' unsafe for SAFESEH image.
      Found _zC8eg2C_7
        Referenced in lmgr.lib(l_init_file.obj)
        Loaded lmgr.lib(dir_pc.obj)
module 'lmgr.lib(dir_pc.obj)' unsafe for SAFESEH image.
      Found _rFOiadZ2RD
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(l_open_file.obj)
        Loaded lmgr.lib(flex_file.obj)
module 'lmgr.lib(flex_file.obj)' unsafe for SAFESEH image.
      Found _eBbWl3AzYUmo3R3
        Referenced in lmgr.lib(l_init_file.obj)
        Loaded lmgr.lib(l_lmgrdr.obj)
module 'lmgr.lib(l_lmgrdr.obj)' unsafe for SAFESEH image.
      Found _c3OzD7EsfQibJ
        Referenced in lmgr.lib(l_serv_msg.obj)
        Loaded lmgr.lib(lm_feat_list.obj)
module 'lmgr.lib(lm_feat_list.obj)' unsafe for SAFESEH image.
      Found _la_freeFulfillmentStatus
        Referenced in lmgr.lib(l_serv_msg.obj)
        Loaded lmgr.lib(lm_fulfillStatus.obj)
module 'lmgr.lib(lm_fulfillStatus.obj)' unsafe for SAFESEH image.
      Found _kXRoGunQHx1
        Referenced in lmgr.lib(l_serv_msg.obj)
        Referenced in lmgr.lib(l_open_file.obj)
        Referenced in lmgr.lib(l_finder.obj)
        Referenced in lmgr.lib(l_lmgrdr.obj)
        Loaded lmgr.lib(l_get_lfile.obj)
module 'lmgr.lib(l_get_lfile.obj)' unsafe for SAFESEH image.
      Found _i12jrgcyY
        Referenced in lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(l_handshake.obj)
        Loaded lmgr.lib(flex_thread_safe_get.obj)
module 'lmgr.lib(flex_thread_safe_get.obj)' unsafe for SAFESEH image.
      Found _qIX0m
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(l_now.obj)
module 'lmgr.lib(l_now.obj)' unsafe for SAFESEH image.
      Found _dDdW2XWx
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(lmhostid.obj)
module 'lmgr.lib(lmhostid.obj)' unsafe for SAFESEH image.
      Found _tyealwG_ZJQXYf
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(lm_pconf.obj)
module 'lmgr.lib(lm_pconf.obj)' unsafe for SAFESEH image.
      Found _iU4P41qBC
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(lm_ckin.obj)
module 'lmgr.lib(lm_ckin.obj)' unsafe for SAFESEH image.
      Found _vfiBJKSxy2x7zl
        Referenced in lmgr.lib(l_borrow.obj)
        Loaded lmgr.lib(lm_remove.obj)
module 'lmgr.lib(lm_remove.obj)' unsafe for SAFESEH image.
      Found _lc_display
        Referenced in lmgr.lib(l_borrow.obj)
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(lm_display.obj)
module 'lmgr.lib(lm_display.obj)' unsafe for SAFESEH image.
      Found _ksCcvp8aotN
xIXl
        Referenced in lmgr.lib(flex_version_sig.obj)
        Loaded lmgr.lib(lm_crstr.obj)
module 'lmgr.lib(lm_crstr.obj)' unsafe for SAFESEH image.
      Found _mpyotqi3VpbjUend
        Referenced in lmgr.lib(lm_init.obj)
        Loaded lmgr.lib(lu_getdtab.obj)
module 'lmgr.lib(lu_getdtab.obj)' unsafe for SAFESEH image.
      Found _tJES4xJ_4nTjOozjK1EkM
        Referenced in lmgr.lib(lm_init.obj)
        Loaded lmgr.lib(flex_version.obj)
module 'lmgr.lib(flex_version.obj)' unsafe for SAFESEH image.
      Found _aFfVo4Q47L
        Referenced in lmgr.lib(lm_init.obj)
        Referenced in lmgr.lib(l_dialogs.obj)
        Loaded lmgr.lib(lm_get_attr.obj)
module 'lmgr.lib(lm_get_attr.obj)' unsafe for SAFESEH image.
      Found _qjDpbNYVSk3e
        Referenced in lmgr.lib(l_timers.obj)
        Referenced in lmgr.lib(l_rcvmsg.obj)
        Loaded lmgr.lib(l_mem.obj)
module 'lmgr.lib(l_mem.obj)' unsafe for SAFESEH image.
      Found _a2MVxT9HNeY_kk
        Referenced in lmgr.lib(l_timers.obj)
        Referenced in lmgr.lib(l_now.obj)
        Loaded lmgr.lib(l_time.obj)
module 'lmgr.lib(l_time.obj)' unsafe for SAFESEH image.
      Found _gEwhvQeWDc5mYJXDT3
        Referenced in lmgr.lib(FlexInetAddress.obj)
        Loaded lmgr.lib(FlexSocket.obj)
module 'lmgr.lib(FlexSocket.obj)' unsafe for SAFESEH image.
      Found _b7oOEEFM41f7lf6pAu
        Referenced in lmgr.lib(FlexInetAddress.obj)
        Loaded lmgr.lib(FlexInetPton.obj)
module 'lmgr.lib(FlexInetPton.obj)' unsafe for SAFESEH image.
      Found _uxPvFG2hkTnS
        Referenced in lmgr.lib(l_allfeat.obj)
        Referenced in lmgr.lib(l_cvd.obj)
        Referenced in lmgr.lib(l_package.obj)
        Loaded lmgr.lib(l_parse_attr.obj)
module 'lmgr.lib(l_parse_attr.obj)' unsafe for SAFESEH image.
      Found _gNY7axvk7rtcG_u
        Referenced in lmgr.lib(l_allfeat.obj)
        Loaded lmgr.lib(l_rdec.obj)
module 'lmgr.lib(l_rdec.obj)' unsafe for SAFESEH image.
      Found _pc8QXJqVKCu
        Referenced in lmgr.lib(l_rcvmsg.obj)
        Referenced in lmgr.lib(l_connect.obj)
        Loaded lmgr.lib(l_heart.obj)
module 'lmgr.lib(l_heart.obj)' unsafe for SAFESEH image.
      Found _zJyi2u_sVptJ
        Referenced in lmgr.lib(l_rcvmsg.obj)
        Loaded lmgr.lib(l_select_one.obj)
module 'lmgr.lib(l_select_one.obj)' unsafe for SAFESEH image.
      Found _sfyVvaT9nQ34otv
        Referenced in lmgr.lib(l_rcvmsg.obj)
        Loaded lmgr.lib(l_msgencode.obj)
module 'lmgr.lib(l_msgencode.obj)' unsafe for SAFESEH image.
      Found _rFpZ7XkQlL6
        Referenced in lmgr.lib(l_sndmsg.obj)
        Referenced in lmgr.lib(l_handshake.obj)
        Referenced in lmgr.lib(lm_remove.obj)
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_str_crypt.obj)
module 'lmgr.lib(l_str_crypt.obj)' unsafe for SAFESEH image.
      Found _aYTtNqIIocK
        Referenced in lmgr.lib(l_sndmsg.obj)
        Referenced in lmgr.lib(lm_remove.obj)
        Loaded lmgr.lib(l_msg_cksum.obj)
module 'lmgr.lib(l_msg_cksum.obj)' unsafe for SAFESEH image.
      Found _eU4WSeOZljs8
        Referenced in lmgr.lib(l_connect.obj)
        Loaded lmgr.lib(l_basic_conn.obj)
module 'lmgr.lib(l_basic_conn.obj)' unsafe for SAFESEH image.
      Found _yFqcSm0iz30deh7
        Referenced in lmgr.lib(l_connect.obj)
        Loaded lmgr.lib(l_msghello.obj)
module 'lmgr.lib(l_msghello.obj)' unsafe for SAFESEH image.
      Found _ug73JSjXI0zWwWjZ3jZ
 
       Referenced in lmgr.lib(l_dialogs.obj)
        Loaded lmgr.lib(l_icmp.obj)
module 'lmgr.lib(l_icmp.obj)' unsafe for SAFESEH image.
      Found _br6IdVH_K0Xf_e
        Referenced in lmgr.lib(l_dialogs.obj)
        Loaded lmgr.lib(l_winrsrc.obj)
module 'lmgr.lib(l_winrsrc.obj)' unsafe for SAFESEH image.
      Found _em7SqM1Qk5C3pbvgEM916
        Referenced in lmgr.lib(l_asc_hostid.obj)
        Loaded lmgr.lib(l_inet.obj)
module 'lmgr.lib(l_inet.obj)' unsafe for SAFESEH image.
      Found _znRupXlkX02
        Referenced in lmgr.lib(l_commbuffer.obj)
        Loaded lmgr.lib(l_varbuffer.obj)
module 'lmgr.lib(l_varbuffer.obj)' unsafe for SAFESEH image.
      Found _eKtIuTdZ
        Referenced in lmgr.lib(l_handshake.obj)
        Loaded lmgr.lib(l_modify.obj)
module 'lmgr.lib(l_modify.obj)' unsafe for SAFESEH image.
      Found _iGm7EdIT5QxQsfOH
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_mac_address.obj)
module 'lmgr.lib(l_mac_address.obj)' unsafe for SAFESEH image.
      Found _bAGXqPWGkeRpkt
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_comp_id.obj)
module 'lmgr.lib(l_comp_id.obj)' unsafe for SAFESEH image.
      Found _h8xTI6dyZxeGMurEUy
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_vol_id.obj)
module 'lmgr.lib(l_vol_id.obj)' unsafe for SAFESEH image.
      Found _pxi80fT2s
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_bios_id.obj)
module 'lmgr.lib(l_bios_id.obj)' unsafe for SAFESEH image.
      Found _cY9T080RYbIxxytOyD
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_diskgeo_id.obj)
module 'lmgr.lib(l_diskgeo_id.obj)' unsafe for SAFESEH image.
      Found _dkXHfpGG
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_cpu_id.obj)
module 'lmgr.lib(l_cpu_id.obj)' unsafe for SAFESEH image.
      Found _pSjPWMgru
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_intelid.obj)
module 'lmgr.lib(l_intelid.obj)' unsafe for SAFESEH image.
      Found _fYDiZLVgbz
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(leintelid.obj)
module 'lmgr.lib(leintelid.obj)' unsafe for SAFESEH image.
      Found _ss6AR9KysgCvFu8
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_aladdin.obj)
module 'lmgr.lib(l_aladdin.obj)' unsafe for SAFESEH image.
      Found _qTALqnzmCbdaaS
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_dallas.obj)
module 'lmgr.lib(l_dallas.obj)' unsafe for SAFESEH image.
      Found _olPPSX_0_nlC6ue
        Referenced in lmgr.lib(lm_getid_typ.obj)
        Loaded lmgr.lib(l_rainbow.obj)
module 'lmgr.lib(l_rainbow.obj)' unsafe for SAFESEH image.
      Found _unlockTS
        Referenced in lmgr.lib(l_getActivations.obj)
        Loaded lmgr.lib(TSAccess.obj)
module 'lmgr.lib(TSAccess.obj)' unsafe for SAFESEH image.
      Found _l_configFromString
        Referenced in lmgr.lib(l_getActivations.obj)
        Loaded lmgr.lib(l_configFromString.obj)
module 'lmgr.lib(l_configFromString.obj)' unsafe for SAFESEH image.
      Found _mkR5VLbOdfR5
        Referenced in lmgr.lib(l_open_file.obj)
        Loaded lmgr.lib(l_read_lfile.obj)
module 'lmgr.lib(l_read_lfile.obj)' unsafe for SAFESEH image.
      Found _l_flexSendFulfillStatus
        Referenced in lmgr.lib(lm_fulfillStatus.obj)
        Loaded lmgr.lib(l_msgfu
lfillstatus.obj)
module 'lmgr.lib(l_msgfulfillstatus.obj)' unsafe for SAFESEH image.
      Found _rR_1lKq9uKBu7HN6R
        Referenced in lmgr.lib(l_get_lfile.obj)
        Loaded lmgr.lib(l_msgsendlf.obj)
module 'lmgr.lib(l_msgsendlf.obj)' unsafe for SAFESEH image.
      Found _g8BpYdaRb0gD3om9
        Referenced in lmgr.lib(lm_pconf.obj)
        Loaded lmgr.lib(l_wdec.obj)
module 'lmgr.lib(l_wdec.obj)' unsafe for SAFESEH image.
      Found _spEaqodcP_N8Ased_PYx
        Referenced in lmgr.lib(lm_ckin.obj)
        Loaded lmgr.lib(l_msgcheckin.obj)
module 'lmgr.lib(l_msgcheckin.obj)' unsafe for SAFESEH image.
      Found _cVmYo3sPm_oHdcBFokR
        Referenced in lmgr.lib(lm_remove.obj)
        Loaded lmgr.lib(l_msgremove.obj)
module 'lmgr.lib(l_msgremove.obj)' unsafe for SAFESEH image.
      Found _xWzAGw5oDFE
        Referenced in lmgr.lib(lm_crstr.obj)
        Loaded lmgr.lib(l_validdate.obj)
module 'lmgr.lib(l_validdate.obj)' unsafe for SAFESEH image.
      Found _h87bilc
        Referenced in lmgr.lib(lm_crstr.obj)
        Loaded lmgr.lib(l_cksum.obj)
module 'lmgr.lib(l_cksum.obj)' unsafe for SAFESEH image.
      Found _s_SjTCh2RcTsX5h
        Referenced in lmgr.lib(lm_crstr.obj)
        Loaded lmgr.lib(lm_chk_conf.obj)
module 'lmgr.lib(lm_chk_conf.obj)' unsafe for SAFESEH image.
      Found _lc_crypt
        Referenced in lmgr.lib(lm_crstr.obj)
        Referenced in lmgr.lib(l_cksum.obj)
        Loaded lmgr.lib(lm_crypt.obj)
module 'lmgr.lib(lm_crypt.obj)' unsafe for SAFESEH image.
      Found _ylZ0iDe77StvxENqXlneUHr4h
        Referenced in lmgr.lib(FlexSocket.obj)
        Loaded lmgr.lib(FlexSocketAddress.obj)
module 'lmgr.lib(FlexSocketAddress.obj)' unsafe for SAFESEH image.
      Found _eGVhZGRl
        Referenced in lmgr.lib(l_rdec.obj)
        Loaded lmgr.lib(l_pack.obj)
module 'lmgr.lib(l_pack.obj)' unsafe for SAFESEH image.
      Found _sLuFMGCz
        Referenced in lmgr.lib(l_select_one.obj)
        Loaded lmgr.lib(l_select.obj)
module 'lmgr.lib(l_select.obj)' unsafe for SAFESEH image.
      Found _nBk9aQt9VaK7okfwmk4
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgloglevel.obj)
module 'lmgr.lib(l_msgloglevel.obj)' unsafe for SAFESEH image.
      Found _sydrUti3kZ24VvsCU8NDrsKdpDgP
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgquorumstatus.obj)
module 'lmgr.lib(l_msgquorumstatus.obj)' unsafe for SAFESEH image.
      Found _l_msgDecodeFulfillStatusResp
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgfulfillstatusresp.obj)
module 'lmgr.lib(l_msgfulfillstatusresp.obj)' unsafe for SAFESEH image.
      Found _l_msgDecodeActivation
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgactivation.obj)
module 'lmgr.lib(l_msgactivation.obj)' unsafe for SAFESEH image.
      Found _nITef9vjYLlslnjJoysa5A3tZ1
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgvendorheartbeat.obj)
module 'lmgr.lib(l_msgvendorheartbeat.obj)' unsafe for SAFESEH image.
      Found _of4_JrJ_GNqg_GykN
        Referenced in lmgr.lib(l_msgencode.obj)
        Referenced in lmgr.lib(l_msgquorumstatus.obj)
        Loaded lmgr.lib(l_msgquorum.obj)
module 'lmgr.lib(l_msgquorum.obj)' unsafe for SAFESEH image.
      Found _yg0ecu82s163Yghm4klnYrCvK0po
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgrequestvendorlist.obj)
module 
'lmgr.lib(l_msgrequestvendorlist.obj)' unsafe for SAFESEH image.
      Found _yfdXb1jX9eAsXw_XZWvvK
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgvendorlist.obj)
module 'lmgr.lib(l_msgvendorlist.obj)' unsafe for SAFESEH image.
      Found _lUL9QSPeYEdTeHNcG_5N
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgusername2.obj)
module 'lmgr.lib(l_msgusername2.obj)' unsafe for SAFESEH image.
      Found _oQKJnqrLXHSx65dFhmy
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgusername.obj)
module 'lmgr.lib(l_msgusername.obj)' unsafe for SAFESEH image.
      Found _ovc4UKk_6ov0JxhPqzopx
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgtryanother.obj)
module 'lmgr.lib(l_msgtryanother.obj)' unsafe for SAFESEH image.
      Found _dS9Hwzr8trGFytsHUa
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgok.obj)
module 'lmgr.lib(l_msgok.obj)' unsafe for SAFESEH image.
      Found _gQ0MCvUS0jg2BB8kG
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgvhello.obj)
module 'lmgr.lib(l_msgvhello.obj)' unsafe for SAFESEH image.
      Found _qq77RNO0nRjglxWcK3A
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgshutdown.obj)
module 'lmgr.lib(l_msgshutdown.obj)' unsafe for SAFESEH image.
      Found _uiv88kOBVH5UrSELibxehd8kn
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msglicensefile.obj)
module 'lmgr.lib(l_msglicensefile.obj)' unsafe for SAFESEH image.
      Found _afqsMEzlZUpVM1AX1
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgreread.obj)
module 'lmgr.lib(l_msgreread.obj)' unsafe for SAFESEH image.
      Found _nuhwBZyjAf4svG1p
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgorder.obj)
module 'lmgr.lib(l_msgorder.obj)' unsafe for SAFESEH image.
      Found _f6kdMHTH6JU4RvMGYLBsea
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgmasterready.obj)
module 'lmgr.lib(l_msgmasterready.obj)' unsafe for SAFESEH image.
      Found _lwv2x0UBldswmMiMk
        Referenced in lmgr.lib(l_msgencode.obj)
        Loaded lmgr.lib(l_msgmaster.obj)
module 'lmgr.lib(l_msgmaster.obj)' unsafe for SAFESEH image.
      Found _pWJye8Iz3Hoee94CfhIh
        Referenced in lmgr.lib(l_basic_conn.obj)
        Loaded lmgr.lib(l_conn_msg.obj)
module 'lmgr.lib(l_conn_msg.obj)' unsafe for SAFESEH image.
      Found _nbB1TsJS2TO7uG
        Referenced in lmgr.lib(l_winrsrc.obj)
        Loaded lmgr.lib(lmgrrsrc.obj)
module 'lmgr.lib(lmgrrsrc.obj)' unsafe for SAFESEH image.
      Found _lSR08Yn8AOC_6
        Referenced in lmgr.lib(l_comp_id.obj)
        Loaded lmgr.lib(l_prikey.obj)
module 'lmgr.lib(l_prikey.obj)' unsafe for SAFESEH image.
      Found _mQRqm5W
        Referenced in lmgr.lib(l_vol_id.obj)
        Loaded lmgr.lib(l_ntadd.obj)
module 'lmgr.lib(l_ntadd.obj)' unsafe for SAFESEH image.
      Found _fipxPM1ceF
        Referenced in lmgr.lib(leintelid.obj)
        Loaded lmgr.lib(l_mddl.obj)
module 'lmgr.lib(l_mddl.obj)' unsafe for SAFESEH image.
      Found _arUp
        Referenced in lmgr.lib(l_aladdin.obj)
        Loaded lmgr.lib(haspntry.obj)
module 'lmgr.lib(haspntry.obj)' unsafe for SAFESEH image.
      Found _RNBOsproFindNextUnit@4
        Referenced in lmgr.lib(l_rainbow.obj)
        Loaded lmgr.lib(SPROMEPS.O
BJ)
module 'lmgr.lib(SPROMEPS.OBJ)' unsafe for SAFESEH image.
      Found _tsInMemoryCacheIncrementUpdateCount
        Referenced in lmgr.lib(TSAccess.obj)
        Loaded lmgr.lib(TSInMemoryCache.obj)
module 'lmgr.lib(TSInMemoryCache.obj)' unsafe for SAFESEH image.
      Found _haspregnew
        Referenced in lmgr.lib(haspntry.obj)
        Loaded lmgr.lib(apifmscnhasphl.obj)
module 'lmgr.lib(apifmscnhasphl.obj)' unsafe for SAFESEH image.
      Found _wurschtsalod11
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded lmgr.lib(ffscrypt.obj)
module 'lmgr.lib(ffscrypt.obj)' unsafe for SAFESEH image.
      Found _wurschtsemmel01
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded lmgr.lib(r_encode.obj)
module 'lmgr.lib(r_encode.obj)' unsafe for SAFESEH image.
      Found _HLNET_SEND_Win32
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded lmgr.lib(nsf_msc.obj)
module 'lmgr.lib(nsf_msc.obj)' unsafe for SAFESEH image.
      Found __grunzelsepp_
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded lmgr.lib(sepperl.obj)
module 'lmgr.lib(sepperl.obj)' unsafe for SAFESEH image.
      Found _R_RandomCreate
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded lmgr.lib(aks_random.obj)
module 'lmgr.lib(aks_random.obj)' unsafe for SAFESEH image.
      Found _weisswurschtbrotzeit23
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded lmgr.lib(asn1lib.obj)
module 'lmgr.lib(asn1lib.obj)' unsafe for SAFESEH image.
      Found _fischsemmel02
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded lmgr.lib(asn1crc32.obj)
module 'lmgr.lib(asn1crc32.obj)' unsafe for SAFESEH image.
      Found _schweizerwurschtsalod
        Referenced in lmgr.lib(ffscrypt.obj)
        Loaded lmgr.lib(protocols1.obj)
module 'lmgr.lib(protocols1.obj)' unsafe for SAFESEH image.
      Found _init_opt_math
        Referenced in lmgr.lib(ffscrypt.obj)
        Loaded lmgr.lib(onb.obj)
module 'lmgr.lib(onb.obj)' unsafe for SAFESEH image.
      Found _schweizerwurschtsalod3
        Referenced in lmgr.lib(ffscrypt.obj)
        Loaded lmgr.lib(ripemd.obj)
module 'lmgr.lib(ripemd.obj)' unsafe for SAFESEH image.
      Found _R_memset
        Referenced in lmgr.lib(ffscrypt.obj)
        Referenced in lmgr.lib(aks_random.obj)
        Referenced in lmgr.lib(ripemd.obj)
        Loaded lmgr.lib(r_stdlib.obj)
module 'lmgr.lib(r_stdlib.obj)' unsafe for SAFESEH image.
      Found _schweizerwurschtsalod6
        Referenced in lmgr.lib(ffscrypt.obj)
        Loaded lmgr.lib(onb_integer.obj)
module 'lmgr.lib(onb_integer.obj)' unsafe for SAFESEH image.
      Found _schweizerwurschtsalod5
        Referenced in lmgr.lib(ffscrypt.obj)
        Loaded lmgr.lib(rsa.obj)
module 'lmgr.lib(rsa.obj)' unsafe for SAFESEH image.
      Found _suppengruen03
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded lmgr.lib(blowc.obj)
module 'lmgr.lib(blowc.obj)' unsafe for SAFESEH image.
      Found _wrdlbrmpft09
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded lmgr.lib(r_dh.obj)
module 'lmgr.lib(r_dh.obj)' unsafe for SAFESEH image.
      Found _schweizerwurschtsalod12
        Referenced in lmgr.lib(aks_random.obj)
        Loaded lmgr.lib(md5c.obj)
module 'lmgr.lib(md5c.obj)' unsafe for SAFESEH image.
      Found _fischsemmel05
        Referenced in lmgr.lib(protocols1.obj)
        Loaded lmgr.l
ib(eliptic.obj)
module 'lmgr.lib(eliptic.obj)' unsafe for SAFESEH image.
      Found _leberknoedelsuppm04
        Referenced in lmgr.lib(onb_integer.obj)
        Loaded lmgr.lib(bigint.obj)
module 'lmgr.lib(bigint.obj)' unsafe for SAFESEH image.
      Found _random_field
        Referenced in lmgr.lib(onb_integer.obj)
        Loaded lmgr.lib(ecc_random.obj)
module 'lmgr.lib(ecc_random.obj)' unsafe for SAFESEH image.
      Found _mod_inv
        Referenced in lmgr.lib(onb_integer.obj)
        Loaded lmgr.lib(int_functions.obj)
module 'lmgr.lib(int_functions.obj)' unsafe for SAFESEH image.
      Found _weisswurschtbrotzeit2
        Referenced in lmgr.lib(rsa.obj)
        Referenced in lmgr.lib(r_dh.obj)
        Loaded lmgr.lib(nn.obj)
module 'lmgr.lib(nn.obj)' unsafe for SAFESEH image.
      Found _wurschtsemmel02
        Referenced in lmgr.lib(blowc.obj)
        Loaded lmgr.lib(desc.obj)
module 'lmgr.lib(desc.obj)' unsafe for SAFESEH image.
      Found _weisswurschtbrotzeit22
        Referenced in lmgr.lib(r_dh.obj)
        Loaded lmgr.lib(prime.obj)
module 'lmgr.lib(prime.obj)' unsafe for SAFESEH image.
    Searching C:Program FilesMicrosoft Visual Studio 8VClibkernel32.lib:
      Found __imp__GetWindowsDirectoryA@8
        Referenced in lmgr.lib(l_init_file.obj)
        Referenced in lmgr.lib(l_baddate.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetVersionExA@4
        Referenced in lmgr.lib(lm_init.obj)
        Referenced in lmgr.lib(flex_utils.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetVersion@0
        Referenced in lmgr.lib(l_intelid.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(l_getattr.obj)
        Referenced in lmgr.lib(wsock32.obj)
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_vol_id.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__MultiByteToWideChar@24
        Referenced in lmgr.lib(flex_utils.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__WideCharToMultiByte@32
        Referenced in lmgr.lib(flex_utils.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetCommandLineW@0
        Referenced in lmgr.lib(flex_utils.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetEnvironmentVariableA@12
        Referenced in lmgr.lib(flex_utils.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetEnvironmentVariableW@12
        Referenced in lmgr.lib(flex_utils.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetModuleHandleA@4
        Referenced in lmgr.lib(l_dialogs.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetProcAddress@8
        Referenced in lmgr.lib(nsf_msc.obj)
        Referenced in lmgr.lib(l_vol_id.obj)
        Referenced in lmgr.lib(l_intelid.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(wsock32.obj)
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_internaldata.obj)
        Referenced in lmgr.lib(flex_thread_safe_get.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__LoadLibraryA@4
        Referenced in
 lmgr.lib(nsf_msc.obj)
        Referenced in lmgr.lib(l_vol_id.obj)
        Referenced in lmgr.lib(l_intelid.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(wsock32.obj)
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_internaldata.obj)
        Referenced in lmgr.lib(flex_thread_safe_get.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__SetErrorMode@4
        Referenced in lmgr.lib(wsock32.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__SetHandleInformation@12
        Referenced in lmgr.lib(wsock32.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__Sleep@4
        Referenced in lmgr.lib(winflex.obj)
        Referenced in lmgr.lib(l_dallas.obj)
        Referenced in lmgr.lib(l_select.obj)
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__CloseHandle@4
        Referenced in lmgr.lib(nsf_msc.obj)
        Referenced in lmgr.lib(winflex.obj)
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__WaitForSingleObject@8
        Referenced in lmgr.lib(winflex.obj)
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__FreeLibrary@4
        Referenced in lmgr.lib(l_vol_id.obj)
        Referenced in lmgr.lib(l_intelid.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(winflex.obj)
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_internaldata.obj)
        Referenced in lmgr.lib(flex_thread_safe_get.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__ResetEvent@4
        Referenced in lmgr.lib(winflex.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__CreateEventA@16
        Referenced in lmgr.lib(winflex.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__SetEvent@4
        Referenced in lmgr.lib(winflex.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__ReleaseMutex@4
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetLastError@0
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_icmp.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__CreateMutexA@12
        Referenced in lmgr.lib(l_ts.obj)
        Referenced in lmgr.lib(l_ntadd.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetTickCount@0
        Referenced in lmgr.lib(l_pcconn.obj)
        Referenced in lmgr.lib(l_time.obj)
        Referenced in lmgr.lib(l_dallas.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__FindFirstFileW@8
        Referenced in lmgr.lib(dir_pc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__FindFirstFileA@8
        Referenced in lmgr.lib(dir_pc.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib
(KERNEL32.dll)
      Found __imp__FindNextFileW@8
        Referenced in lmgr.lib(dir_pc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__FindNextFileA@8
        Referenced in lmgr.lib(dir_pc.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__FindClose@4
        Referenced in lmgr.lib(dir_pc.obj)
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetProcessTimes@20
        Referenced in lmgr.lib(l_heart.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetCurrentProcess@0
        Referenced in lmgr.lib(l_heart.obj)
        Referenced in lmgr.lib(l_intelid.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__SetLastError@4
        Referenced in lmgr.lib(l_winrsrc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetVolumeInformationA@32
        Referenced in lmgr.lib(l_vol_id.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetDriveTypeA@4
        Referenced in lmgr.lib(l_vol_id.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__VirtualAlloc@16
        Referenced in lmgr.lib(leintelid.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__VirtualFree@12
        Referenced in lmgr.lib(leintelid.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found _GetPrivateProfileStringA@24
        Referenced in lmgr.lib(SPROMEPS.OBJ)
        Loaded kernel32.lib(KERNEL32.dll)
      Found _GetPrivateProfileIntA@16
        Referenced in lmgr.lib(SPROMEPS.OBJ)
        Loaded kernel32.lib(KERNEL32.dll)
      Found _CreateFileA@28
        Referenced in lmgr.lib(SPROMEPS.OBJ)
        Loaded kernel32.lib(KERNEL32.dll)
      Found _ReadFile@20
        Referenced in lmgr.lib(SPROMEPS.OBJ)
        Loaded kernel32.lib(KERNEL32.dll)
      Found _WriteFile@20
        Referenced in lmgr.lib(SPROMEPS.OBJ)
        Loaded kernel32.lib(KERNEL32.dll)
      Found _DeviceIoControl@32
        Referenced in lmgr.lib(SPROMEPS.OBJ)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetCurrentProcessId@0
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetModuleFileNameA@12
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetSystemTime@4
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__SystemTimeToFileTime@8
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetLocalTime@4
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__LocalAlloc@8
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__LocalFree@4
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__GetFileSize@8
        Referenced in lmgr.lib(apifmscnhasphl.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__SearchPathA@24
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__CreateSemaphor
eA@16
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__OpenSemaphoreA@12
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __imp__ReleaseSemaphore@12
        Referenced in lmgr.lib(nsf_msc.obj)
        Loaded kernel32.lib(KERNEL32.dll)
      Found __IMPORT_DESCRIPTOR_KERNEL32
        Referenced in kernel32.lib(KERNEL32.dll)
        Referenced in kernel32.lib(KERNEL32.dll)
        Referenced in kernel32.lib(KERNEL32.dll)
        Referenced in kernel32.lib(KERNEL32.dll)
        Referenced in kernel32.lib(KERNEL32.dll)
        Referenced i
0 Kudos
Steven_L_Intel1
Employee
1,524 Views
I begin to see. You do not have the version of IMSL we provide but rather one that comes from VNI directly. For support on that version of IMSL, you should contact VNI. However, let me suggest that you change the project property Fortran > Libraries > Use Run-Time Library to "Multithreaded" and not "Debug Multithreaded" and see how that works for you.
0 Kudos
kelaynak
Beginner
1,524 Views

Thank you very much for the solution.

You are right, it has worked without any warning.

0 Kudos
Reply