harbour with mingw64

495 views
Skip to first unread message

Rossine

unread,
May 1, 2012, 9:38:55 AM5/1/12
to Harbour Users
Hello,

I'm trying to generate binaries harbour in my notebook 64-bit and is
happening to me this error:

[ERROR]

C:\harbour>W64-MAKE clean install
! Building Harbour 3.2.0dev from source - http://harbour-project.org
! MAKE: W64-MAKE 3.82 sh.exe clean install
! HB_USER_CFLAGS: -DHB_GC_AUTO -DHB_FM_STATISTICS_OFF
! HB_INSTALL_PREFIX: c:\hrb_ming
! HB_INSTALL_BIN: c:\hrb_ming\bin
! HB_INSTALL_LIB: c:\hrb_ming\lib
! HB_INSTALL_DYN: c:\hrb_ming\dyn
! HB_INSTALL_INC: c:\hrb_ming\include
! HB_INSTALL_DOC: c:\hrb_ming\doc
! HB_BUILD_DYN: yes
! HB_BUILD_SHARED: no
! HB_BUILD_STRIP: all
! HB_BUILD_PARTS: all
! HB_REBUILD_EXTERN: yes
! HB_INSTALL_IMPLIB: yes
! HB_HOST_PLAT: win (x86_64) HB_SHELL: nt
! HB_PLATFORM: win (x86) (autodetected)
! HB_COMPILER: mingw (autodetected)
! Component: 'zlib' found in C:/harbour/src/3rd/zlib (local)
! Component: 'pcre' found in C:/harbour/src/3rd/pcre (local)
! Component: 'gpm' not supported on win platform
! Component: 'slang' not found. Configure with HB_WITH_SLANG.
! Component: 'curses' not found. Configure with HB_WITH_CURSES.
! Component: 'x11' not found. Configure with HB_WITH_X11.
! Component: 'wattcp/watt-32' not supported on win platform
svn: E155036: Working copy 'C:\harbour' is too old (format 9, created
by Subvers
ion 1.5)
! REVISION:
! 'hbpmcom' library skipped (platform or compiler not supported)
! 'gtcrs' library skipped (component not found)
! 'gtdos' library skipped (platform not supported)
! 'gtos2' library skipped (platform not supported)
! 'gtsln' library skipped (component not found)
! 'gttrm' library skipped (platform or compiler not supported)
! 'gtxwc' library skipped (component not found)
! Warning: hbmk2 not found, contrib/make.hbs skipped.
! Warning: hbmk2 not found, config/postinst.hbs skipped.
1 arquivo(s) copiado(s).
...
1 arquivo(s) copiado(s).
! 'hbpmcom' library skipped (platform or compiler not supported)
gcc -I. -I../../../../../../include -Wmissing-braces -Wreturn-type -
Wformat -W
implicit-int -Wimplicit-function-declaration -O3 -fomit-frame-pointer -
march=i58
6 -mtune=pentiumpro -DUNICODE -IC:/harbour/src/3rd/zlib -DHB_GC_AUTO -
DHB_FM_ST
ATISTICS_OFF -opng.o -c ../../../png.c
../../../png.c:1:0: error: CPU you selected does not support x86-64
instruction
set
../../../png.c:1:0: error: CPU you selected does not support x86-64
instruction
set
W64-MAKE[4]: *** [png.o] Error 1
W64-MAKE[3]: *** [descend] Error 2
W64-MAKE[2]: *** [png.inst] Error 2
W64-MAKE[1]: *** [3rd.inst] Error 2
W64-MAKE: *** [src.inst] Error 2

C:\harbour>

[ERROR]

What can be ?

Regards,

Rossine.

Massimo Belgrano

unread,
May 1, 2012, 10:40:13 AM5/1/12
to harbou...@googlegroups.com
Recent revolution in harbour regarding unicode in hvm (a new powerfull capabilty for harbour app )
i think to a problem in your script
better post your script and version of mingw64

2012/5/1 Rossine <qii...@ig.com.br>

--
You received this message because you are subscribed to the Google
Groups "Harbour Users" group.
Unsubscribe: harbour-user...@googlegroups.com
Web: http://groups.google.com/group/harbour-users



--
Massimo Belgrano

Rossine

unread,
May 1, 2012, 11:02:44 AM5/1/12
to Harbour Users
Hi Massimo,

> version of mingw64

I Use this version of mingw64:
http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Automated%20Builds/mingw-w64-bin_i686-mingw_20111220.zip/download

I extract it in "c:\mingw64"

In my path i include c:\mingw64

> i think to a problem in your script

This is my script:

[SCRIPT.BAT]

set HB_INSTALL_IMPLIB=yes
set HB_BUILD_IMPLIB=yes
rem HB_INSTALL_ADDONS
set HB_BUILD_VERBOSE=yes
set HB_HVM_ALL=yes
set HB_BUILD_PARTS=all
set HB_REBUILD_EXTERN=yes
set HB_BUILD_SHARED=no
set HB_BUILD_STRIP=all

set HB_WITH_PGSQL=C:\pgsql84\include
set HB_WITH_ADS=C:\ads81
set HB_WITH_SQLITE3=C:\sqlite3
set HB_WITH_GD=C:\gd\gd-2.0.33
set HB_WITH_FIREBIRD=C:\firebird\include
set HB_WITH_FREEIMAGE=C:\FreeImg\3151\Dist
SET HB_WITH_CURL=C:\curl\include

set HB_USER_CFLAGS=-DHB_GC_AUTO -DHB_FM_STATISTICS_OFF

set HB_INC_PGSQL=C:\pgsql84\include
set HB_INC_ADS=C:\ads81
set HB_INC_FIREBIRD=C:\firebird\include
set HB_INC_FREEIMAGE=C:\FreeImg\3151\Dist

set HB_WITH_OPENSSL=C:\openssl\include

set HB_PATH=c:\hrb_ming
set HB_DIR_QT=c:\qt
SET HB_WITH_QT=c:\qt\include

set HB_COMPILER=mingw64

set QMAKESPEC=win32-g++

set PATH=%HB_PATH%;%HB_PATH%\bin;%HB_DIR_QT%\bin;C:\mingw64\bin;%path%
set INCLUDE=%HB_PATH%\include;C:\mingw64\include;%include%
set LIB=%HB_PATH%\lib;%HB_DIR_QT%\lib;C:\mingw64\lib;%lib%

set HB_INSTALL_PREFIX=%HB_PATH%

set HB_INSTALL_BIN=%HB_PATH%\bin
set HB_INSTALL_LIB=%HB_PATH%\lib
set HB_INSTALL_INC=%HB_PATH%\include
set HB_INSTALL_DOC=%HB_PATH%\doc
set HB_INSTALL_DYN=%HB_PATH%\dyn

cd\harbour

w64-make clean install

[END]

Thank's for help,

Rossine.

Rossine

unread,
May 1, 2012, 11:25:17 AM5/1/12
to Harbour Users
Hi Massimo,

Sorry but in my "c:\windows\system32" I had "gcc.exe". I deleted it
and now the error message changed. See:

[ERROR]
...
1 arquivo(s) copiado(s).
1 arquivo(s) copiado(s).
1 arquivo(s) copiado(s).
! 'hbpmcom' library skipped (platform or compiler not supported)
gcc -I. -I../../../../../../include -Wmissing-braces -Wreturn-type -
Wformat -W
implicit-int -Wimplicit-function-declaration -O3 -DUNICODE -IC:/
harbour/src/3rd
/zlib -DHB_GC_AUTO -DHB_FM_STATISTICS_OFF -opng.o -c ../../../png.c
process_begin: CreateProcess(NULL, gcc -I. -I../../../../../../include
-Wmissing
-braces -Wreturn-type -Wformat -Wimplicit-int -Wimplicit-function-
declaration -O
3 -DUNICODE -IC:/harbour/src/3rd/zlib -DHB_GC_AUTO -
DHB_FM_STATISTICS_OFF -opng.
o -c ../../../png.c, ...) failed.
make (e=2): O sistema nÒo pode encontrar o arquivo especificado.
<<<- Here File not found..
win-make[4]: *** [png.o] Error 2
win-make[3]: *** [descend] Error 2
win-make[2]: *** [png.inst] Error 2
win-make[1]: *** [3rd.inst] Error 2
win-make: *** [src.inst] Error 2

C:\harbour>

[END]

Best Regards,

Rossine.

Massimo Belgrano

unread,
May 1, 2012, 1:03:06 PM5/1/12
to harbou...@googlegroups.com
imo you need  
1)  removing:
HB_COMPILER,HB_INSTALL_PREFIX, HB_INSTALL_BIN, HB_INSTALL_LIB, HB_INSTALL_INC,HB_INSTALL_DOC, HB_INSTALL_DYN, QMAKESPEC 


2) Follow install where write:
 --- MinGW GCC for Windows x86-64 (requires preceding build for native target)
      set PATH=C:\mingw64\bin;%PATH%

3) Follow install where write:
      MinGW/MinGW-64 [win, *nix, free, open-soource]
         http://tdm-gcc.tdragon.net/, http://sourceforge.net/projects/tdm-gcc/ (unofficial, recommended) [NOTE: 4.5.1 is broken, 4.5.2, 4.6.1 x86 OK, for x64 use the official release]
         http://www.mingw.org/, http://sourceforge.net/projects/mingw/ (official 32-bit, MSYS home, broken as of 4.5.0-1)
         http://nuwen.net/mingw.html (unofficial)


2012/5/1 Rossine <qii...@ig.com.br>

Rossine.

--
You received this message because you are subscribed to the Google
Groups "Harbour Users" group.
Unsubscribe: harbour-user...@googlegroups.com
Web: http://groups.google.com/group/harbour-users



--
Massimo Belgrano

Rossine

unread,
May 1, 2012, 11:38:13 PM5/1/12
to Harbour Users
Hi Massimo,

Many thank's for this suggetions.

> imo you need
> 1)  removing:
> HB_COMPILER,HB_INSTALL_PREFIX, HB_INSTALL_BIN, HB_INSTALL_LIB,
>  HB_INSTALL_INC,HB_INSTALL_DOC, HB_INSTALL_DYN, QMAKESPEC
>
> 2) Follow install where write:
>  --- MinGW GCC for Windows x86-64 (requires preceding build for native
> target)
>       set PATH=C:\mingw64\bin;%PATH%
>
> 3) Follow install where write:
>       MinGW/MinGW-64 [win, *nix, free, open-soource]
>          http://tdm-gcc.tdragon.net/,http://sourceforge.net/projects/tdm-gcc/(unofficial, recommended) [NOTE:
> 4.5.1 is broken, 4.5.2, 4.6.1 x86 OK, for x64 use the official release]
>          http://www.mingw.org/,http://sourceforge.net/projects/mingw/(official32-bit, MSYS home,
Now generate binares of harbour, but stop here and it seems that a
loop is not out of it:

hbmk2: Harbour compiler command (embedded):
(C:\harbour\bin\win\mingw64\harbour.exe) -n1 ..\contrib\hbct
\hbct.hbx ..\contrib
\hbct\ct.prg ..\contrib\hbct\ctdummy.prg ..\contrib\hbct\ctmisc.prg ..
\contrib\h
bct\ctrand.prg ..\contrib\hbct\cttime.prg ..\contrib\hbct\fcopy.prg ..
\contrib\h
bct\getinfo.prg ..\contrib\hbct\getinput.prg ..\contrib\hbct
\getsecrt.prg ..\con
trib\hbct\keysave.prg ..\contrib\hbct\keysec.prg ..\contrib\hbct
\keytime.prg ..\
contrib\hbct\screen3.prg ..\contrib\hbct\scrmark.prg ..\contrib\hbct
\showtime.pr
g ..\contrib\hbct\tempfile.prg -q0 -l -w3 -es2 -D__HBEXTREQ__ -kmo -i-
-o..\lib\
win\mingw64\.hbmk\hbct\ -i..\include
hbmk2: Compiling...
hbmk2: 'cd' to: ..\lib\win\mingw64\.hbmk\hbct
hbmk2: C/C++ compiler command:
gcc.exe -c -O3 -DHB_GC_AUTO -DHB_FM_STATISTICS_OFF -W -Wall -pipe -
DUNICODE -I..
/../../../../include ../../../../../lib/win/mingw64/.hbmk/hbct/
hbct.c ../../../.
./../lib/win/mingw64/.hbmk/hbct/ct.c ../../../../../lib/win/
mingw64/.hbmk/hbct/c
tdummy.c ../../../../../lib/win/mingw64/.hbmk/hbct/
ctmisc.c ../../../../../lib/w
in/mingw64/.hbmk/hbct/ctrand.c ../../../../../lib/win/mingw64/.hbmk/
hbct/cttime.
c ../../../../../lib/win/mingw64/.hbmk/hbct/fcopy.c ../../../../../lib/
win/mingw
64/.hbmk/hbct/getinfo.c ../../../../../lib/win/mingw64/.hbmk/hbct/
getinput.c ../
../../../../lib/win/mingw64/.hbmk/hbct/getsecrt.c ../../../../../lib/
win/mingw64
/.hbmk/hbct/keysave.c ../../../../../lib/win/mingw64/.hbmk/hbct/
keysec.c ../../.
./../../lib/win/mingw64/.hbmk/hbct/keytime.c ../../../../../lib/win/
mingw64/.hbm
k/hbct/screen3.c ../../../../../lib/win/mingw64/.hbmk/hbct/
scrmark.c ../../../..
/../lib/win/mingw64/.hbmk/hbct/showtime.c ../../../../../lib/win/
mingw64/.hbmk/h
bct/tempfile.c ../../../../../contrib/hbct/addascii.c ../../../../../
contrib/hbc
t/asciisum.c ../../../../../contrib/hbct/ascpos.c ../../../../../
contrib/hbct/at
adjust.c ../../../../../contrib/hbct/atnum.c ../../../../../contrib/
hbct/atrepl.
c ../../../../../contrib/hbct/bitnum.c ../../../../../contrib/hbct/
bitstr.c ../.
./../../../contrib/hbct/blank.c ../../../../../contrib/hbct/
charevod.c ../../../
../../contrib/hbct/charlihb.c ../../../../../contrib/hbct/
charlist.c ../../../..
/../contrib/hbct/charmirr.c ../../../../../contrib/hbct/
charmix.c ../../../../..
/contrib/hbct/charone.c ../../../../../contrib/hbct/
charonly.c ../../../../../co
ntrib/hbct/charop.c ../../../../../contrib/hbct/
charophb.c ../../../../../contri
b/hbct/charrepl.c ../../../../../contrib/hbct/
charsort.c ../../../../../contrib/
hbct/charsprd.c ../../../../../contrib/hbct/charswap.c ../../../../../
contrib/hb
ct/color.c ../../../../../contrib/hbct/count.c ../../../../../contrib/
hbct/ctc.c
../../../../../contrib/hbct/ctchksum.c ../../../../../contrib/hbct/
ctcom1.c ../
../../../../contrib/hbct/ctcom2.c ../../../../../contrib/hbct/
ctcrypt.c ../../..
/../../contrib/hbct/ctmath.c ../../../../../contrib/hbct/
ctmath2.c ../../../../.
./contrib/hbct/ctnet.c ../../../../../contrib/hbct/
ctpad.c ../../../../../contri
b/hbct/ctset.c ../../../../../contrib/hbct/ctstr.c ../../../../../
contrib/hbct/c
tstrfil.c ../../../../../contrib/hbct/ctwfunc.c ../../../../../contrib/
hbct/ctwi
n.c ../../../../../contrib/hbct/cursor.c ../../../../../contrib/hbct/
datetime.c
../../../../../contrib/hbct/dattime2.c ../../../../../contrib/hbct/
dattime3.c ..
/../../../../contrib/hbct/dbftools.c ../../../../../contrib/hbct/
disk.c ../../..
/../../contrib/hbct/envparam.c ../../../../../contrib/hbct/
expand.c ../../../../
../contrib/hbct/exponent.c ../../../../../contrib/hbct/
files.c ../../../../../co
ntrib/hbct/finan.c ../../../../../contrib/hbct/ftoc.c ../../../../../
contrib/hbc
t/justify.c ../../../../../contrib/hbct/keyset.c ../../../../../
contrib/hbct/lik
e.c ../../../../../contrib/hbct/lton.c ../../../../../contrib/hbct/
maxline.c ../
../../../../contrib/hbct/misc1.c ../../../../../contrib/hbct/
misc2.c ../../../..
/../contrib/hbct/misc3.c ../../../../../contrib/hbct/
misc4.c ../../../../../cont
rib/hbct/num1.c ../../../../../contrib/hbct/numat.c ../../../../../
contrib/hbct/
numbase.c ../../../../../contrib/hbct/numcount.c ../../../../../
contrib/hbct/num
line.c ../../../../../contrib/hbct/pack.c ../../../../../contrib/hbct/
pos1.c ../
../../../../contrib/hbct/pos2.c ../../../../../contrib/hbct/
posdiff.c ../../../.
./../contrib/hbct/print.c ../../../../../contrib/hbct/
range.c ../../../../../con
trib/hbct/relation.c ../../../../../contrib/hbct/
remove.c ../../../../../contrib
/hbct/replace.c ../../../../../contrib/hbct/screen1.c ../../../../../
contrib/hbc
t/screen2.c ../../../../../contrib/hbct/setlast.c ../../../../../
contrib/hbct/se
trc.c ../../../../../contrib/hbct/strdiff.c ../../../../../contrib/
hbct/strswap.
c ../../../../../contrib/hbct/tab.c ../../../../../contrib/hbct/
token1.c ../../.
./../../contrib/hbct/token2.c ../../../../../contrib/hbct/
trig.c ../../../../../
contrib/hbct/video.c ../../../../../contrib/hbct/
wordrepl.c ../../../../../contr
ib/hbct/wordtoch.c
hbmk2: 'cd' back.
hbmk2: Creating static library... ..\lib\win\mingw64\libhbct.a
hbmk2: Lib command:
ar.exe rcs ../lib/win/mingw64/libhbct.a ../lib/win/mingw64/.hbmk/hbct/
hbct.o ../
lib/win/mingw64/.hbmk/hbct/ct.o ../lib/win/mingw64/.hbmk/hbct/
ctdummy.o ../lib/w
in/mingw64/.hbmk/hbct/ctmisc.o ../lib/win/mingw64/.hbmk/hbct/
ctrand.o ../lib/win
/mingw64/.hbmk/hbct/cttime.o ../lib/win/mingw64/.hbmk/hbct/fcopy.o ../
lib/win/mi
ngw64/.hbmk/hbct/getinfo.o ../lib/win/mingw64/.hbmk/hbct/getinput.o ../
lib/win/m
ingw64/.hbmk/hbct/getsecrt.o ../lib/win/mingw64/.hbmk/hbct/
keysave.o ../lib/win/
mingw64/.hbmk/hbct/keysec.o ../lib/win/mingw64/.hbmk/hbct/keytime.o ../
lib/win/m
ingw64/.hbmk/hbct/screen3.o ../lib/win/mingw64/.hbmk/hbct/scrmark.o ../
lib/win/m
ingw64/.hbmk/hbct/showtime.o ../lib/win/mingw64/.hbmk/hbct/
tempfile.o ../lib/win
/mingw64/.hbmk/hbct/addascii.o ../lib/win/mingw64/.hbmk/hbct/
asciisum.o ../lib/w
in/mingw64/.hbmk/hbct/ascpos.o ../lib/win/mingw64/.hbmk/hbct/
atadjust.o ../lib/w
in/mingw64/.hbmk/hbct/atnum.o ../lib/win/mingw64/.hbmk/hbct/
atrepl.o ../lib/win/
mingw64/.hbmk/hbct/bitnum.o ../lib/win/mingw64/.hbmk/hbct/bitstr.o ../
lib/win/mi
ngw64/.hbmk/hbct/blank.o ../lib/win/mingw64/.hbmk/hbct/charevod.o ../
lib/win/min
gw64/.hbmk/hbct/charlihb.o ../lib/win/mingw64/.hbmk/hbct/charlist.o ../
lib/win/m
ingw64/.hbmk/hbct/charmirr.o ../lib/win/mingw64/.hbmk/hbct/
charmix.o ../lib/win/
mingw64/.hbmk/hbct/charone.o ../lib/win/mingw64/.hbmk/hbct/
charonly.o ../lib/win
/mingw64/.hbmk/hbct/charop.o ../lib/win/mingw64/.hbmk/hbct/
charophb.o ../lib/win
/mingw64/.hbmk/hbct/charrepl.o ../lib/win/mingw64/.hbmk/hbct/
charsort.o ../lib/w
in/mingw64/.hbmk/hbct/charsprd.o ../lib/win/mingw64/.hbmk/hbct/
charswap.o ../lib
/win/mingw64/.hbmk/hbct/color.o ../lib/win/mingw64/.hbmk/hbct/
count.o ../lib/win
/mingw64/.hbmk/hbct/ctc.o ../lib/win/mingw64/.hbmk/hbct/ctchksum.o ../
lib/win/mi
ngw64/.hbmk/hbct/ctcom1.o ../lib/win/mingw64/.hbmk/hbct/ctcom2.o ../
lib/win/ming
w64/.hbmk/hbct/ctcrypt.o ../lib/win/mingw64/.hbmk/hbct/ctmath.o ../lib/
win/mingw
64/.hbmk/hbct/ctmath2.o ../lib/win/mingw64/.hbmk/hbct/ctnet.o ../lib/
win/mingw64
/.hbmk/hbct/ctpad.o ../lib/win/mingw64/.hbmk/hbct/ctset.o ../lib/win/
mingw64/.hb
mk/hbct/ctstr.o ../lib/win/mingw64/.hbmk/hbct/ctstrfil.o ../lib/win/
mingw64/.hbm
k/hbct/ctwfunc.o ../lib/win/mingw64/.hbmk/hbct/ctwin.o ../lib/win/
mingw64/.hbmk/
hbct/cursor.o ../lib/win/mingw64/.hbmk/hbct/datetime.o ../lib/win/
mingw64/.hbmk/
hbct/dattime2.o ../lib/win/mingw64/.hbmk/hbct/dattime3.o ../lib/win/
mingw64/.hbm
k/hbct/dbftools.o ../lib/win/mingw64/.hbmk/hbct/disk.o ../lib/win/
mingw64/.hbmk/
hbct/envparam.o ../lib/win/mingw64/.hbmk/hbct/expand.o ../lib/win/
mingw64/.hbmk/
hbct/exponent.o ../lib/win/mingw64/.hbmk/hbct/files.o ../lib/win/
mingw64/.hbmk/h
bct/finan.o ../lib/win/mingw64/.hbmk/hbct/ftoc.o ../lib/win/
mingw64/.hbmk/hbct/j
ustify.o ../lib/win/mingw64/.hbmk/hbct/keyset.o ../lib/win/
mingw64/.hbmk/hbct/li
ke.o ../lib/win/mingw64/.hbmk/hbct/lton.o ../lib/win/mingw64/.hbmk/
hbct/maxline.
o ../lib/win/mingw64/.hbmk/hbct/misc1.o ../lib/win/mingw64/.hbmk/hbct/
misc2.o ..
/lib/win/mingw64/.hbmk/hbct/misc3.o ../lib/win/mingw64/.hbmk/hbct/
misc4.o ../lib
/win/mingw64/.hbmk/hbct/num1.o ../lib/win/mingw64/.hbmk/hbct/
numat.o ../lib/win/
mingw64/.hbmk/hbct/numbase.o ../lib/win/mingw64/.hbmk/hbct/
numcount.o ../lib/win
/mingw64/.hbmk/hbct/numline.o ../lib/win/mingw64/.hbmk/hbct/pack.o ../
lib/win/mi
ngw64/.hbmk/hbct/pos1.o ../lib/win/mingw64/.hbmk/hbct/pos2.o ../lib/
win/mingw64/
.hbmk/hbct/posdiff.o ../lib/win/mingw64/.hbmk/hbct/print.o ../lib/win/
mingw64/.h
bmk/hbct/range.o ../lib/win/mingw64/.hbmk/hbct/relation.o ../lib/win/
mingw64/.hb
mk/hbct/remove.o ../lib/win/mingw64/.hbmk/hbct/replace.o ../lib/win/
mingw64/.hbm
k/hbct/screen1.o ../lib/win/mingw64/.hbmk/hbct/screen2.o ../lib/win/
mingw64/.hbm
k/hbct/setlast.o ../lib/win/mingw64/.hbmk/hbct/setrc.o ../lib/win/
mingw64/.hbmk/
hbct/strdiff.o ../lib/win/mingw64/.hbmk/hbct/strswap.o ../lib/win/
mingw64/.hbmk/
hbct/tab.o ../lib/win/mingw64/.hbmk/hbct/token1.o ../lib/win/
mingw64/.hbmk/hbct/
token2.o ../lib/win/mingw64/.hbmk/hbct/trig.o ../lib/win/mingw64/.hbmk/
hbct/vide
o.o ../lib/win/mingw64/.hbmk/hbct/wordrepl.o ../lib/win/mingw64/.hbmk/
hbct/wordt
och.o

I deleted my directory "c:\ harbour" and updated SVN again, but the
problem persists.

Any other suggestions ?

Best Regards,

Rossine.
Reply all
Reply to author
Forward
0 new messages