Delphi 7: Any differences between compiling under Win XP or Windows Server 2003? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:06:41Zhttp://stackoverflow.com/feeds/question/820807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/820807/delphi-7-any-differences-between-compiling-under-win-xp-or-windows-server-20036Delphi 7: Any differences between compiling under Win XP or Windows Server 2003?Fred2009-05-04T16:29:51Z2009-05-04T20:25:45Z
<p>Hi all,</p>
<p>I have a legacy application to maintain. Currently, releases are built from one particular developper workstation, that is a bad, bad habit.</p>
<p>I asked for a virtualized build server to automate the build from one centralized environment. The only problem is that the server they gave me run with windows server 2003, and they will not give me a windows XP to do that...</p>
<p>Should I be careful on specific issues, what should I be aware of?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/820807/delphi-7-any-differences-between-compiling-under-win-xp-or-windows-server-2003/820825#82082511Answer by mghie for Delphi 7: Any differences between compiling under Win XP or Windows Server 2003?mghie2009-05-04T16:35:12Z2009-05-04T16:35:12Z<p>Normally the OS an application is built on with Delphi does not matter, so there should be no problems. The only exception would be with any imported type libraries, because a newer OS could come with a more recent version. This can be worked around by not using the imported unit directly, but by copying a known good version to your project, renaming it and adding it to version control.</p>
http://stackoverflow.com/questions/820807/delphi-7-any-differences-between-compiling-under-win-xp-or-windows-server-2003/821147#8211474Answer by dummzeuch for Delphi 7: Any differences between compiling under Win XP or Windows Server 2003?dummzeuch2009-05-04T17:48:51Z2009-05-04T17:48:51Z<p>I was using a Win2003 build machine and Delphi 7 for quite a while whithout ever encountering problems. Also developing and debugging worked fine. I even used the terminal server to access the console sometimes, also no problem there.</p>
http://stackoverflow.com/questions/820807/delphi-7-any-differences-between-compiling-under-win-xp-or-windows-server-2003/821298#8212988Answer by Nick Hodges for Delphi 7: Any differences between compiling under Win XP or Windows Server 2003?Nick Hodges2009-05-04T18:26:45Z2009-05-04T18:26:45Z<p>The compiler itself won't care, and will produce the same code regardless.</p>
http://stackoverflow.com/questions/820807/delphi-7-any-differences-between-compiling-under-win-xp-or-windows-server-2003/821881#8218815Answer by Conor Boyd for Delphi 7: Any differences between compiling under Win XP or Windows Server 2003?Conor Boyd2009-05-04T20:25:45Z2009-05-04T20:25:45Z<p>Depending on your version of Delphi, the license specifically allows you to "install" the command-line compiler on a separate build PC for the purposes of these types of builds. It shouldn't matter what the OS is.</p>
<p>You don't actually need to use the Delphi installer to set such a build PC up. My build PC simply has the following folders directly copied on to it (you may need/want to add the bin path to your PATH environment variable).</p>
<p>Program Files\CodeGear\RAD Studio\5.0\bin<br />
Program Files\CodeGear\RAD Studio\5.0\lib<br />
Program Files\CodeGear\RAD Studio\5.0\source<br />
Program Files\Common Files\RAD Studio\Shared Assemblies\5.0</p>