On Mon, Feb 16, 2009 at 12:18 AM, Massimo Belgrano wrote:
> if i have m1.prg,m2.prg How can i create a EXE?
> hbmk m1.prg+m2.prg
hbmk m1.prg m2.prg
> can i use a harbour define like -DEURO -D__SIM__
Yes.
> Is possible create a lib instead a exe from m1.prg/m2.prg?
No.
Brgds,
Viktor
if i have m1.prg,m2.prg How can i create a EXE?
hbmk m1.prg+m2.prg
can i use a harbour define like -DEURO -D__SIM__
Is possible create a lib instead a exe from m1.prg/m2.prg?
2009/2/15 Viktor Szakáts :
> Hi Massimo,
> No, compiler and architecture are case-sensitive, currently
> lowercase st
Hi Massimo,
No, compiler and architecture are case-sensitive, currently
lowercase strings all over Harbour. I don't plan to change this,
as this would be very error prone, with no benefit and a
waste of valuable time.
Notice however that you don't need to set ANY values for
these envvars, since th
Will HB_COMPILER, HB_ARCHITECTURE be in uppercase ?
If i set
SET HB_COMPILER=BCC32
SET HB_ARCHITECTURE=WIN
then receive running hbmk test.prg
hbmk: Error: Architecture not properly set.
MY proposal is
237 CASE t_cARCH == "win"
237CASE upper(t_cARCH) == "WIN"
Have somebody collec