dcc32

Is there a way to turn off the quiet mode in DCC32 called by MSBuild?

落花浮王杯 提交于 2020-01-03 09:47:10
问题 By default, the DCC32 compiler is called with the -Q switch that turns the quiet mode on. Is there a way to disable this switch in the .dproj file or by a command line parameter? I use msbuild for the build automation in my Delphi project. Unfortunately I can't find any reference to the DCC32 parameters when it is executed by MSBuild. Usually I first change a compiler parameter in the Delphi IDE and then check what was changed in the project file. However, this approach won't work for the

Blank lines instead of a task console output in MSBuild

混江龙づ霸主 提交于 2019-12-07 13:00:04
问题 My product is being migrated from Delphi 6 to the newer Delphi XE3. The Delphi 6 compiler used to output list of files that were compiled to an executable: Borland Delphi Version 14.0 Copyright (c) 1983,2002 Borland Software Corporation ProjectName.dpr(X) ... PathToSomeUnit.pas(X) ... PathToSomeIncludedFile.inc(X) ... X lines, X.XX seconds, X bytes code, X bytes data. where "X" mean some numbers We have an internal software for analyzing dependencies between applications and particular files

Blank lines instead of a task console output in MSBuild

故事扮演 提交于 2019-12-06 02:59:20
My product is being migrated from Delphi 6 to the newer Delphi XE3. The Delphi 6 compiler used to output list of files that were compiled to an executable: Borland Delphi Version 14.0 Copyright (c) 1983,2002 Borland Software Corporation ProjectName.dpr(X) ... PathToSomeUnit.pas(X) ... PathToSomeIncludedFile.inc(X) ... X lines, X.XX seconds, X bytes code, X bytes data. where "X" mean some numbers We have an internal software for analyzing dependencies between applications and particular files - units and included files. This software uses the dcc32 console output (like this one above) as its

How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b?

╄→尐↘猪︶ㄣ 提交于 2019-11-30 07:18:14
How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b? I've got two projects I'm trying to build, the first one uses some conditional defines, which are getting passed via msbuild to the dcc32. However, some common units appear to be stuck with the first set of conditionals, so the second project is built improperly. jasonpenny I believe it's /t:rebuild , the msbuild output lists "Deleting file: ..." for all the dcu's, then builds the project. I use a batch file to call msbuild to build delphi projects, for Delphi 2007 and Delphi 2009 (which just has a different

How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b?

五迷三道 提交于 2019-11-29 09:59:21
问题 How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b? I've got two projects I'm trying to build, the first one uses some conditional defines, which are getting passed via msbuild to the dcc32. However, some common units appear to be stuck with the first set of conditionals, so the second project is built improperly. 回答1: I believe it's /t:rebuild , the msbuild output lists "Deleting file: ..." for all the dcu's, then builds the project. I use a batch file to