Ignoring directive
-
Hi I have the following warning when i link. (I can execute program perfectly though) Programm1.exp : warning LNK4070: /OUT:PROGRAMM2.EXE directive in .EXP differs from output filename "C:\vss\MyProject\Debug\Programm1.exe"; ignoring directive Any idea what this means? Best regards Jens
-
Hi I have the following warning when i link. (I can execute program perfectly though) Programm1.exp : warning LNK4070: /OUT:PROGRAMM2.EXE directive in .EXP differs from output filename "C:\vss\MyProject\Debug\Programm1.exe"; ignoring directive Any idea what this means? Best regards Jens
Per MSDN: The filename specified in the NAME or LIBRARY statement when the .EXP file was created differs from the output filename that was either assumed by default or specified with the /OUT option. A client program that uses the resulting DLL might encounter problems.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
-
Hi I have the following warning when i link. (I can execute program perfectly though) Programm1.exp : warning LNK4070: /OUT:PROGRAMM2.EXE directive in .EXP differs from output filename "C:\vss\MyProject\Debug\Programm1.exe"; ignoring directive Any idea what this means? Best regards Jens
Hm, could it be that you export some functions via a .def file? Then check its first line - it should read as:
LIBRARY PROGRAMM1.EXE
RK