Building Harbour for the iPhone/iPad from the Mac OSX

76 views
Skip to first unread message

Antonio Linares

unread,
Apr 8, 2011, 10:45:12 AM4/8/11
to Harbour Developers
Dear Viktor,

Is it currently supported to build Harbour for the iPhone/iPad (real
device, not the emulator) from the Mac OSX ?

Last time we built it from inside the iPhone/iPad (iOS)

Thanks,

best regards,

Antonio

Viktor Szakáts

unread,
Apr 8, 2011, 12:33:19 PM4/8/11
to harbou...@googlegroups.com
Hi Antonio,

On Fri, Apr 8, 2011 at 4:45 PM, Antonio Linares
<antonio....@gmail.com> wrote:
> Dear Viktor,
>
> Is it currently supported to build Harbour for the iPhone/iPad (real
> device, not the emulator) from the Mac OSX ?
>
> Last time we built it from inside the iPhone/iPad (iOS)

I can't remember any commits targeting such support,
so I think the status is the same as before.

Viktor

Antonio Linares

unread,
Apr 8, 2011, 8:36:09 PM4/8/11
to Harbour Developers
Detailed instructions about how to build Harbour from the iPhone/iPad:

http://code.google.com/p/fivephone/wiki/Build_Harbour_from_iPhone_iPad

regards,

Antonio

Viktor Szakáts

unread,
Apr 9, 2011, 1:20:16 AM4/9/11
to harbou...@googlegroups.com
On Sat, Apr 9, 2011 at 2:36 AM, Antonio Linares
<antonio....@gmail.com> wrote:
> Detailed instructions about how to build Harbour from the iPhone/iPad:
>
> http://code.google.com/p/fivephone/wiki/Build_Harbour_from_iPhone_iPad

I saw that, but for me it's not usable, since I don't plan
to install hacked OS on my iPad.

Do you have instructions to build Harbour for iOS from OS X?

Viktor

Antonio Linares

unread,
Apr 9, 2011, 2:24:57 AM4/9/11
to Harbour Developers
Viktor,

If you build a project for the iOS from xcode then you can see all the
required flags.

We should use those flags to build Harbour for the iOS from OSX and
support them from the Harbour make.

best regards,

Antonio

Viktor Szakáts

unread,
Apr 9, 2011, 7:32:15 AM4/9/11
to harbou...@googlegroups.com

I'm all for it. If you have some specific config which
works, pls post it and I can help adding it to core
build and hbmk2. We can have a new 'ios' platform
in this case.

Viktor

Antonio Linares

unread,
Apr 9, 2011, 6:40:33 PM4/9/11
to Harbour Developers
Viktor,

Many thanks for your help, you have all my support, lets see if we can
get it :-)

We need to build two versions of Harbour, one for the real devices and
another one for the simulators. Lets start with the simulator version
as we don't need a certificate, a provisioning profile, etc. for
making tests.

Please note that gcc automatically calls llvm-gcc, so we can simply
call gcc:

main.m is going to be compiled:

CompileC /Users/anto/Library/Developer/Xcode/DerivedData/test-
hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Intermediates/test.build/Debug-
iphonesimulator/test.build/Objects-normal/i386/main.o test/main.m
normal i386 objective-c com.apple.compilers.llvmgcc42
cd /Users/anto/Desktop/test
setenv LANG en_US.US-ASCII
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/
Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/
llvm-gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -
std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-
variable -DDEBUG=1 -isysroot /Developer/Platforms/
iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk -
fexceptions -fasm-blocks -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-
abi-version=2 -fobjc-legacy-dispatch -
D__IPHONE_OS_VERSION_MIN_REQUIRED=40300 -I/Users/anto/Library/
Developer/Xcode/DerivedData/test-hkfkcnjkfrlcqqbqqousxdlbzfta/Build/
Intermediates/test.build/Debug-iphonesimulator/test.build/test.hmap -I/
Users/anto/harbour/include -I/Users/anto/Library/Developer/Xcode/
DerivedData/test-hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Products/Debug-
iphonesimulator/include -I/Users/anto/Library/Developer/Xcode/
DerivedData/test-hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Intermediates/
test.build/Debug-iphonesimulator/test.build/DerivedSources/i386 -I/
Users/anto/Library/Developer/Xcode/DerivedData/test-
hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Intermediates/test.build/Debug-
iphonesimulator/test.build/DerivedSources -F/Users/anto/Library/
Developer/Xcode/DerivedData/test-hkfkcnjkfrlcqqbqqousxdlbzfta/Build/
Products/Debug-iphonesimulator -include /Users/anto/Library/Developer/
Xcode/DerivedData/test-hkfkcnjkfrlcqqbqqousxdlbzfta/Build/
PrecompiledHeaders/test-Prefix-fgmfxfkepvcorsatkeutyqcnrdtt/test-
Prefix.pch -c /Users/anto/Desktop/test/test/main.m -o /Users/anto/
Library/Developer/Xcode/DerivedData/test-hkfkcnjkfrlcqqbqqousxdlbzfta/
Build/Intermediates/test.build/Debug-iphonesimulator/test.build/
Objects-normal/i386/main.o

The link process:
Ld /Users/anto/Library/Developer/Xcode/DerivedData/test-
hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Products/Debug-iphonesimulator/
test.app/test normal i386
cd /Users/anto/Desktop/test
setenv MACOSX_DEPLOYMENT_TARGET 10.6
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/
Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/
llvm-gcc-4.2 -arch i386 -isysroot /Developer/Platforms/
iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk -L/
Users/anto/Library/Developer/Xcode/DerivedData/test-
hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Products/Debug-iphonesimulator -L/
Users/anto/Desktop/test/../../Downloads -L/Users/anto/Desktop/
test/../../fivephone/lib -L/Users/anto/Desktop/test/../../harbour/lib -
F/Users/anto/Library/Developer/Xcode/DerivedData/test-
hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Products/Debug-iphonesimulator -
filelist /Users/anto/Library/Developer/Xcode/DerivedData/test-
hkfkcnjkfrlcqqbqqousxdlbzfta/Build/Intermediates/test.build/Debug-
iphonesimulator/test.build/Objects-normal/i386/test.LinkFileList -
mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -
framework AudioToolbox -lfivephone -framework UIKit -framework
Foundation -framework CoreGraphics -lharbour -o /Users/anto/Library/
Developer/Xcode/DerivedData/test-hkfkcnjkfrlcqqbqqousxdlbzfta/Build/
Products/Debug-iphonesimulator/test.app/test

Please let me know if you need something else. Thanks,

Antonio

Antonio Linares

unread,
Apr 10, 2011, 2:09:44 PM4/10/11
to Harbour Developers
Viktor,

Not sure if this is a flag used from the Harbour makefile, anyhow I
report it here FYI:

ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hvmall.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbstr.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(cdpapi.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(errapi.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbi18n1.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(filesys.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(wacore.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbdate.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbfsapi.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(cmdarg.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(initsymb.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(dates.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(console.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(extrap.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbgtcore.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(errint.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(inkeyapi.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(macroy.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(wafunc.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(langapi.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(setcurs.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(proc.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbprintf.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(setcolor.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(harbinit.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(workarea.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(strwild.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(macrob.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(expropt1.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(macroa.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(macrolex.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(rddsys.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(gtapi.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(eval.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(fserr.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(errintlo.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(trim.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbffind.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(idle.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(gtclip.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(gtsys.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(itemseri.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbcrc.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbgete.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbverdsp.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbver.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(arrayshb.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(abs.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(chrasc.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(at.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(dbcmd.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(break.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(datec.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(setpos.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(dateshb.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(empty.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(math.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(inkey.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(round.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(left.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(len.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(strcase.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(minmax.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(pcount.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(replic.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(seconds.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(setposbs.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(space.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(str.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(substr.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(transfrm.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(type.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(val.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(word.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(errsys.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(setkey.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(xhelp.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(funcid.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(expropt2.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(dbf1.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(dbfntx1.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(dbffpt1.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbfopen.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(cputime.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbntos.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(alert.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(initexit.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(valtype.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbdbsort.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(filebuf.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(sxcrypt.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(sxdate.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbrandom.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(strtran.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(gtfunc.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(valtoexp.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(fstemp.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(hbregexc.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(spfiles.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(strtoexp.o)
ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/anto/
harbour/lib/libharbour.a(file.o)

regards,

Antonio

Antonio Linares

unread,
Apr 11, 2011, 2:47:17 AM4/11/11
to Harbour Developers
Harbour running on the iPhone/iPad simulator from Lion (beta) and
xcode 4.1:

screenshot:
http://forums.fivetechsupport.com/viewtopic.php?p=113210#p113210

FivePhone is a free and open source project available from:
http://code.google.com/p/fivephone/

regards,

Antonio

Viktor Szakáts

unread,
Apr 12, 2011, 1:48:44 PM4/12/11
to harbou...@googlegroups.com
Hi Antonio,

On Sun, Apr 10, 2011 at 12:40 AM, Antonio Linares
<antonio....@gmail.com> wrote:
> Viktor,
>
> Many thanks for your help, you have all my support, lets see if we can
> get it :-)
>
> We need to build two versions of Harbour, one for the real devices and
> another one for the simulators. Lets start with the simulator version
> as we don't need a certificate, a provisioning profile, etc. for
> making tests.
>
> Please note that gcc automatically calls llvm-gcc, so we can simply
> call gcc:
>
> main.m is going to be compiled:

Can you show the options required to build Harbour itself?
(a core .c file)

Viktor

Antonio Linares

unread,
Apr 16, 2011, 9:20:07 AM4/16/11
to Harbour Developers
Viktor,

We use the standard Harbour makefile and config files with no changes

regards,

Antonio

On Apr 12, 7:48 pm, Viktor Szakáts <harbour...@syenar.hu> wrote:
> Hi Antonio,
>
> On Sun, Apr 10, 2011 at 12:40 AM, Antonio Linares
>
Reply all
Reply to author
Forward
0 new messages