Board index » cppbuilder » Re: bcc32pch 2.6dev 12
Harald Plontke
![]() CBuilder Developer |
Harald Plontke
![]() CBuilder Developer |
Re: bcc32pch 2.6dev 122006-04-05 10:38:41 PM cppbuilder20 Hello Andreas, QuoteVersion 2.6dev 12 changes: Now dev 12 works here one day without further errors, but still a little bit slower than dev 5, maybe it has to do with the textattributes in the output window, I will do more tests. Greetings, Harald |
Andreas Hausladen
![]() CBuilder Developer |
2006-04-05 11:54:49 PM
Re:Re: bcc32pch 2.6dev 12
Harald Plontke wrote:
Quotemaybe it has to do with the textattributes in the -- Regards, Andreas Hausladen (andy.jgknet.de/blog) |
Harald Plontke
![]() CBuilder Developer |
2006-04-06 03:00:45 AM
Re:Re: bcc32pch 2.6dev 12QuoteIn that case you could uncheck the "detailed messages" checkbox in the Greetings, Harald {smallsort} |
vavan
![]() CBuilder Developer |
2006-04-06 01:58:36 PM
Re:Re: bcc32pch 2.6dev 12
On Wed, 5 Apr 2006 17:54:49 +0200, "Andreas Hausladen"
< XXXX@XXXXX.COM >wrote: what is the way to pass additional parameters to individual projects? for example if I like to use alternate linker for some project I use Project - Execute Makefile and pass -DLINKER=<linker name>but it isn't very convenient since it always remember latest executed makefile (instead of currently selected project in project group which might be useful) and I'd like to simply hit something like F9 in order to automatically make project and run it to debug within IDE -- Vladimir Ulchenko aka vavan |
Andreas Hausladen
![]() CBuilder Developer |
2006-04-06 11:49:50 PM
Re:Re: bcc32pch 2.6dev 12
vavan wrote:
Quotewhat is the way to pass additional parameters to individual projects? Regards, Andreas Hausladen (andy.jgknet.de/blog) |
vavan
![]() CBuilder Developer |
2006-04-07 07:21:27 PM
Re:Re: bcc32pch 2.6dev 12
On Thu, 6 Apr 2006 17:49:50 +0200, "Andreas Hausladen"
< XXXX@XXXXX.COM >wrote: QuoteThere is no way at the moment. But the code is already written. another problem I often encounter is that when project has compilation errors and I double click on error in message window IDE highlights wrong line though error message usually contains correct line number. do you know what might cause such annoying misbehaviour? thank you -- Vladimir Ulchenko aka vavan |
Andreas Hausladen
![]() CBuilder Developer |
2006-04-07 08:19:22 PM
Re:Re: bcc32pch 2.6dev 12
vavan wrote:
Quotewrong line though error message usually contains correct line number. has problems with Unit line breaks. -- Regards, Andreas Hausladen (andy.jgknet.de/blog) |
vavan
![]() CBuilder Developer |
2006-04-07 10:09:23 PM
Re:Re: bcc32pch 2.6dev 12
On Fri, 7 Apr 2006 14:19:22 +0200, "Andreas Hausladen"
< XXXX@XXXXX.COM >wrote: QuoteI had this with files that have Unix line breaks (single \0x0a). The -- Vladimir Ulchenko aka vavan |
vavan
![]() CBuilder Developer |
2006-04-10 04:36:39 PM
Re:Re: bcc32pch 2.6dev 12
On Thu, 6 Apr 2006 17:49:50 +0200, "Andreas Hausladen"
< XXXX@XXXXX.COM >wrote: QuoteThere is no way at the moment. But the code is already written. to right direction from borland but they somehow forgot to allow customization of used packages in project. so you either enable or disable packages for your project (including all build configs) I don't like it and usually create simple header file: #ifndef COMMON_PROJECTNAME_H #define COMMON_PROJECTNAME_H // some project specific defines #ifdef STATIC_BUILD #pragma comment(lib,"package1.lib") #pragma comment(lib,"package2.lib") ... #pragma comment(lib,"packageN.lib") #else #pragma comment(lib,"package1.bpi") #pragma comment(lib,"package2.bpi") ... #pragma comment(lib,"packageN.bpi") #endif #endif so one can uncheck 'Build with run-time packages' in project settings once and simply define STATIC_BUILD for some configs in order to get statically linked app now the only problem is that your mak-file generator takes build-node named 'libraries' where ide places package1.lib, packageN.lib when aforementioned switch unchecked so I have to manually remove those names from ALLLIB section of generated mak-file it would be great if you supported such build model what do you think? -- Vladimir Ulchenko aka vavan |