Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi 7: Any differences between compiling under Win XP or Windows Server 2003?

I have a legacy application to maintain. Currently, releases are built from one particular developper workstation, that is a bad, bad habit.

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...

Should I be careful on specific issues, what should I be aware of?

Thanks

like image 446
Fred Avatar asked May 04 '09 16:05

Fred


2 Answers

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.

like image 175
mghie Avatar answered Sep 20 '22 17:09

mghie


The compiler itself won't care, and will produce the same code regardless.

like image 40
Nick Hodges Avatar answered Sep 17 '22 17:09

Nick Hodges