delphi 2007 command line compiler dcc32.cfg problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T07:42:40Zhttp://stackoverflow.com/feeds/question/291326http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/291326/delphi-2007-command-line-compiler-dcc32-cfg-problem3delphi 2007 command line compiler dcc32.cfg problemX-Ray2008-11-14T20:35:55Z2008-11-15T09:26:21Z
<p>I'm using the command line compiler for builds. One problem I see is that the paths mentioned there seem to need to be the short versions of the filenames such that they don't contain any spaces. I don't know so much about this even though I have used it for some time.</p>
<p>I recently upgraded to d2009 and the problem started then.</p>
<p>Is there a way around shortening the path? </p>
<p>I should say I'm not eager to change to use the MS Build tool at this time. I just want to build an old copy of my app & get back to other work.</p>
<p>Here's the path used in the <code>dcc32.cfg</code> file for the <code>-I</code>, <code>-U</code>, <code>-O</code>, and <code>-R</code> parameters:</p>
<pre><code>$(BDS)\LIB;$(BDS)\Imports;$(BDS)\Lib\Indy10;C:\PROGRA~1\Borland\BDS\4.0\RAVERE~1\Lib;c:\prj\lib\lib2002;C:\DOCUME~1\ALLUSE~1\DOCUME~1\RADSTU~1\5.0\Bpl;c:\DOCUME~1\mike\MYDOCU~1\BORLAN~1\bpl;C:\Prj\Lib\LOCKBO~1\source;C:\Prj\Lib\MyComp;C:\Prj\Lib\ABBREV~1\source;C:\Prj\Lib\ZLib;C:\Prj\Lib\MinMod;C:\Prj\Lib\HELPMA~1;C:\Prj\Lib\DXGETT~1;c:\windows\system32;c:\prj\lib\xpburn;C:\Prj\Lib\WININE~1;C:\Prj\Lib\regexpr\Source;C:\Prj\Lib\VCARDR~1;C:\PROGRA~1\Raize\RC4\Lib\BDS2006;C:\Prj\Lib\jcl\lib\d10;C:\Prj\Lib\jcl\source;C:\Prj\Lib\jvcl\lib\D10;C:\Prj\Lib\jvcl\common;C:\Prj\Lib\jvcl\RESOUR~1;C:\Prj\Lib\ProE6\Delphi;C:\Prj\Lib\FastMM4;C:\Prj\Lib\OPENOF~1;C:\Prj\Lib\DEVELO~1\Library\Delphi11;C:\Prj\Lib\DEVELO~1\EX38D9~1\Sources;C:\Prj\Lib\DEVELO~1\EXBD88~1\Sources;C:\Prj\Lib\DEVELO~1\XPTHEM~1\Sources;C:\Prj\Lib\DEVELO~1\EX2EBC~1\Sources;C:\Prj\Lib\DEVELO~1\EXC5FB~1\Sources;C:\Prj\Lib\DEVELO~1\EX7C7C~1\Sources;C:\Prj\Lib\DEVELO~1\EXPRES~3\Sources;C:\Prj\Lib\DEVELO~1\EXPRES~4\Sources;C:\Prj\Lib\DEVELO~1\EXC73B~1\Sources;C:\Prj\Lib\DEVELO~1\EX7165~1\Sources;C:\Prj\Lib\DEVELO~1\EXPRES~2\Sources;C:\Prj\Lib\DEVELO~1\EXPRES~1\Sources;C:\Prj\Lib\DEVELO~1\EX749C~1\Sources;C:\Prj\Lib\DEVELO~1\EX0A1A~1\Sources;C:\Prj\Lib\Mad\madBasic\BDS4;C:\Prj\Lib\Mad\MADDIS~1\BDS4;C:\Prj\Lib\Mad\MADEXC~1\BDS4;C:\Prj\Lib\Mad\MADKER~1\BDS4;C:\Prj\Lib\Mad\MADSEC~1\BDS4;C:\Prj\Lib\Mad\madShell\BDS4;C:\Prj\Lib\Mad\madShell\DeXter;C:\Prj\Lib\Mad\madExcept\..\Plugins;
</code></pre>
<p>I've copied it from the IDE's path like I have done in the path and used a program to shorten the path names.</p>
<p>Although there are no spaces in that path, it still can't find indy's <code>IdCoder.dcu</code> at <code>C:\Program Files\CodeGear\RAD Studio\5.0\lib\Indy10</code></p>
<p>According to the d2007 environment variables, <code>$(BDS)</code> would apparently expand to <code>c:\program files\codegear\rad studio\5.0</code></p>
<p>The IDE is considering this library path to be valid.</p>
<p>Why is this happening? I bet it's a simple mistake I haven't thought of!</p>
<p>Thank you for your help!</p>
http://stackoverflow.com/questions/291326/delphi-2007-command-line-compiler-dcc32-cfg-problem/291441#2914412Answer by schnaader for delphi 2007 command line compiler dcc32.cfg problemschnaader2008-11-14T21:10:10Z2008-11-14T21:10:10Z<p>You could try to put the paths in quotes, that's the standard way of handling path-/filenames with spaces in Windows, though I never tried that in Delphi DCUs.</p>
<p>So, instead of </p>
<pre><code>$(BDS)\Lib\Indy10
</code></pre>
<p>try</p>
<pre><code>"$(BDS)\Lib\Indy10"
</code></pre>
<p>You could also try</p>
<pre><code>"C:\Program Files\CodeGear\RAD Studio\5.0\lib\Indy10"
</code></pre>
<p>to check if the environment variable is correct.</p>
http://stackoverflow.com/questions/291326/delphi-2007-command-line-compiler-dcc32-cfg-problem/292088#2920881Answer by CyberShadow for delphi 2007 command line compiler dcc32.cfg problemCyberShadow2008-11-15T03:23:07Z2008-11-15T03:23:07Z<p>Is the $(BDS) environment variable set when you're compiling the program from the command-line? If not, that might be the problem.</p>
<p>Putting quotes around paths containing spaces will likely solve the problem with spaces. This has worked for me:</p>
<p>-U"C:\Path to libraries\First library;C:\Path to libraries\Second library;C:\Path to libraries\Third library"</p>
http://stackoverflow.com/questions/291326/delphi-2007-command-line-compiler-dcc32-cfg-problem/292326#2923261Answer by gabr for delphi 2007 command line compiler dcc32.cfg problemgabr2008-11-15T09:01:42Z2008-11-15T09:01:42Z<p>Check if you have <em>applicationname</em>.cfg file in the current folder. Dcc32 will try to read configuration from that file first. Only if the file does not exist will it read from dcc32.cfg.</p>
http://stackoverflow.com/questions/291326/delphi-2007-command-line-compiler-dcc32-cfg-problem/292340#2923402Answer by Lars Truijens for delphi 2007 command line compiler dcc32.cfg problemLars Truijens2008-11-15T09:26:21Z2008-11-15T09:26:21Z<p>Although .cfg files do still work in the Delphi 2007 command line compiler, you should really be using MSBuild to compile your projects. CFG files are not used by the IDE anymore. Any compiler options you set design time do not get written to the .cfg file. Using MSBuild is not harder then using .cfg. And if you want it is even more flexible since you can change the actual build processes.</p>
<p>msbuild YourProject.dproj</p>