Page 4 of 5
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 5:39 pm
by Roberto Lopez
Roberto Lopez wrote:
I'll work on it.
I know that the following apparently has not any sense...
This must be verified prior to be confirmed....
but...
If the program uses <> in include file name, the incremental compilation does not work, but if the include uses "" it works ok
I'll continue testing and when I sure enough I'll report to HBMK2 authors.
Please, check it...
Regards,
Roberto.
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 6:38 pm
by esgici
Roberto Lopez wrote:
If the program uses <> in include file name, the incremental compilation does not work, but if the include uses "" it works ok
Yes, confirmed
Best Regards
--
Esgici
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 7:03 pm
by mol
Sorry for my absence.
I'll try it now.
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 7:23 pm
by mol
Hello Roberto!
When I used build.bat (from few posts ago), changing forms causes recompilation of project.
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 7:59 pm
by gfilatov
Hello Roberto,
There is a small issue in the
build.bat from test build.
The following section is repeated
twice in the build.bat:
rem ***************************************************************************
rem If /i parameter rceived set BUILDTYPE to incremental
rem ***************************************************************************
if "%1"=="/i" goto incremental
if "%1"=="/I" goto incremental
rem ***************************************************************************
rem If /i parameter rceived set BUILDTYPE to incremental
rem ***************************************************************************
if "%1"=="/i" goto incremental
if "%1"=="/I" goto incremental
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 9:05 pm
by Roberto Lopez
gfilatov wrote:Hello Roberto,
There is a small issue in the
build.bat from test build.
The following section is repeated
twice in the build.bat:
rem ***************************************************************************
rem If /i parameter rceived set BUILDTYPE to incremental
rem ***************************************************************************
if "%1"=="/i" goto incremental
if "%1"=="/I" goto incremental
rem ***************************************************************************
rem If /i parameter rceived set BUILDTYPE to incremental
rem ***************************************************************************
if "%1"=="/i" goto incremental
if "%1"=="/I" goto incremental
You are right, but the second couple of 'ifs' is never executed since the 'incremental' routine ends with a 'goto continue' , so it should be not the cause of the problem...
Had you tested the "" vs, <> thing?
I'm interested to know if the problem arises with BCC builds too.
TIA.
Regards,
Roberto.
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 9:11 pm
by Roberto Lopez
esgici wrote:Roberto Lopez wrote:
If the program uses <> in include file name, the incremental compilation does not work, but if the include uses "" it works ok
Yes, confirmed
Best Regards
--
Esgici
Was an interesting puzzle...
I've changed the "" by <> with no so much faith
Regards,
Roberto.
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 9:29 pm
by esgici
Roberto Lopez wrote:
Was an interesting puzzle...
I've changed the "" by <> with no so much faith
Perhaps some programmers likes building puzzles for others
Best Regards
--
Esgici
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 9:38 pm
by esgici
Hi Maestro
And, founding the key of puzzle ( "" vs <> ) was the most difficult phase.
This is cause of we are saying you "Maestro"
With best regards
--
Esgici
Re: HMG 3.0.0 + IDE + HFCL (Forum Test VIII)
Posted: Fri Oct 23, 2009 9:47 pm
by Roberto Lopez
Well...
For all involved with this issue: I guess that
There is no bug to report.
According Clipper reference, #include directive sholud use double quotes for filenames.
#include
Include a file into the current source file
------------------------------------------------------------------------------
Syntax
#include "<headerFileSpec>"
Arguments
All Harbour samples included in the official distribution, uses double quotes for #includes.
So, strictly talking, using <> for #includes is not correct.
Any opinions???
Regards,
Roberto.