From 19ca803a4dbbb66d2ecf2d760ce47bdf411ae174 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 27 Aug 2008 10:06:20 +0000 Subject: [PATCH] 2008-08-27 12:05 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * source/compiler/hbcomp.c * Changed the default -gc generation mode for real. --- harbour/ChangeLog | 5 +++++ harbour/source/compiler/hbcomp.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6aa4f9751c..a417753109 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-08-27 12:05 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * source/compiler/hbcomp.c + * Changed the default -gc generation mode for real. + 2008-08-27 11:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/examples/rdddbt/dbfdbt1.c * contrib/gtalleg/gtalleg.c @@ -159,6 +163,7 @@ * source/rtl/gtstd/gtstd.c * source/rtl/gttrm/gttrm.c * source/rtl/gtxwc/gtxwc.c + * source/rtl/hbregex.c (added as separate, next commit) ! Fix for MSVC 64-bit C mode startup procedure. 2008-08-27 03:57 UTC+0200 Viktor Szakats (harbour.01 syenar hu) diff --git a/harbour/source/compiler/hbcomp.c b/harbour/source/compiler/hbcomp.c index d1aede195b..02ac2f04e7 100644 --- a/harbour/source/compiler/hbcomp.c +++ b/harbour/source/compiler/hbcomp.c @@ -236,7 +236,7 @@ HB_COMP_PTR hb_comp_new( void ) pComp->fError = FALSE; pComp->iWarnings = 0; /* enable parse warnings */ - pComp->iGenCOutput= HB_COMPGENC_VERBOSE; /* C code generation should be verbose (use comments) or not */ + pComp->iGenCOutput= HB_COMPGENC_COMPACT; /* C code generation default mode */ pComp->iExitLevel = HB_EXITLEVEL_DEFAULT; /* holds if there was any warning during the compilation process */ pComp->iLanguage = HB_LANG_C; /* default Harbour generated output language */ }