#Develop compiler issue

snarfblam

Ultimate Contributor
Joined
Jun 10, 2003
Messages
2,097
Location
USA
I am trying to compile C++ code with #Develop, but I'm getting this error:

err.JPG
 
I have cl.exe on my drive. I downloaded the vctoolkit you linked to anyways, which didn't help. I added that path that contains cl.exe to the PATH environment variable, which didn't help. I can call cl.exe from the command prompt exactly as it is listed in the error message.

Code:
 C:\WINDOWS|► cl.exe "@C:\Docume~1\Tom\Locals~1\Temp\tmp59.tmp"
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for 80x86
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.

cl /c
   /clr
   /Fo"C:\VB\Cxx\bin\Debug/"
   /nologo
   /W"4"
   /EHsc
   /MT
   /J
   /GR
   /Y-
   /Gd
   /TP
   "C:\VB\Cxx\MainForm.cpp"
   "C:\VB\Cxx\AssemblyInfo.cpp"

MainForm.cpp
AssemblyInfo.cpp
Generating Code...

 C:\WINDOWS|►

I don't understand why if I can do it, #Develop can't...
 
Last edited:
Well... I edited the PATH environment to include the folder above the "Bin" folder, which includes a batch that will include the bin folder... which seems to have gotten me farther in compilation, up to this new error message.

errr.jpg


When I tried to do it via commandline I got the following error:

Code:
 C:\WINDOWS|► link.exe "@C:\Docume~1\Tom\Locals~1\Temp\tmp6E.tmp"
Microsoft (R) Incremental Linker Version 7.10.3077
Copyright (C) Microsoft Corporation.  All rights reserved.

"/OUT:C:\VB\Cxx\bin\Debug\Cxx.exe"
"C:\VB\Cxx\bin\Debug\MainForm.obj"
"C:\VB\Cxx\bin\Debug\AssemblyInfo.obj"
LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib'

 C:\WINDOWS|►

I checked and it seems the file does not exist. I don't know how to do a command line compile, though, I'm just guessing here. Appearently, though, I'm having no prob calling link.exe from the command prompt.
 
Last edited:
Back
Top