www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.ide - LNK 1181 error

reply ixid <nuaccount gmail.com> writes:
I've suddenly started having this error, even after reinstalling 
DMD, Visual D and repairing Visual Studio 2013:

"Debug\euler169.obj,Debug\euler169.exe,Debug\euler169.map,user32.lib+"
kernel32.lib/NOMAP/CO/NOI/DELEXE
LINK : fatal error LNK1181: cannot open input file 
'Debug\euler169.obj,Debug\euler169.exe,Debug\euler169.map,user32.lib+'
Building Debug\euler169.exe failed!

Any idea how to fix this?
Jan 29 2016
next sibling parent ixid <nuaccount gmail.com> writes:
On Friday, 29 January 2016 at 21:37:35 UTC, ixid wrote:
 I've suddenly started having this error, even after 
 reinstalling DMD, Visual D and repairing Visual Studio 2013:
 etc
Windows 10 btw.
Jan 29 2016
prev sibling parent Rainer Schuetze <r.sagitario gmx.de> writes:
On 29.01.2016 22:37, ixid wrote:
 I've suddenly started having this error, even after reinstalling DMD,
 Visual D and repairing Visual Studio 2013:

 "Debug\euler169.obj,Debug\euler169.exe,Debug\euler169.map,user32.lib+"
 kernel32.lib/NOMAP/CO/NOI/DELEXE
 LINK : fatal error LNK1181: cannot open input file
 'Debug\euler169.obj,Debug\euler169.exe,Debug\euler169.map,user32.lib+'
 Building Debug\euler169.exe failed!

 Any idea how to fix this?
It seems you've got some PATH settings screwed up. The command line looks like you are compiling for Win32 which needs the link.exe from the dmd2\windows\bin folder, but it picks up the linker from the Microsoft tool chain, probably from <VS-installation-path>\VC\bin. You might also want the check the LINKCMD setting in sc.ini, this is dmd's and Visual D's first guess.
Jan 30 2016