FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour Error al intentar compilar con fwh64 2603
Posts: 1820
Joined: Wed Oct 26, 2005 02:49 PM

Error al intentar compilar con fwh64 2603

Posted: Tue May 12, 2026 04:33 PM

Hola buenos días para todos, estamos intentando compilar nuestra aplicación con la versión de fw64 2603, pero estamos obteniendo el siguiente error:

hbmk2: Linking... hymlyma.exe
Turbo Incremental Link64 6.98 Copyright (c) 1997-2023 Embarcadero Technologies, Inc.
Fatal: Unable to open file 'FIVEHX64.A'
hbmk2[xhbcmp]: Error: Running linker. 2
ilink64.exe @C:\Users\leandro\AppData\Local\Temp\7\m583ib.lnk
Saludos
LEANDRO AREVALO
Bogotá (Colombia)
https://hymlyma.com
https://hymplus.com/
leandroalfonso111@gmail.com
leandroalfonso111@hotmail.com

[ Turbo Incremental Link64 6.98 Embarcadero 7.70 ] [ FiveWin 25.01 ] [ xHarbour 64 bits) ]
Posts: 44229
Joined: Thu Oct 06, 2005 05:47 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Tue May 12, 2026 04:48 PM

Estimado Leandro,

Está el fichero FIVEHX64.A en la carpeta c:\FWH\lib ?

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 8559
Joined: Tue Dec 20, 2005 07:36 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Tue May 12, 2026 05:03 PM

Prueba asi: BUILDX64.BAT

@ECHO OFF
CLS
ECHO ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
ECHO ³ FiveWin for xHarbour 26.03 64bits - Mar. 2026   Harbour development power  ³Ü
ECHO ³ (c) FiveTech 1993-2025 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7/8/10 ³Û
ECHO ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙÛ
ECHO ÿ ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß

if A%1 == A GOTO :SINTAX
if NOT EXIST %1.prg GOTO :NOEXIST

if "%FWDIR%" == "" set FWDIR=.\..
rem if "%HBDIR%" == "" set HBDIR=c:\xharbour64
if "%HBDIR%" == "" set HBDIR=c:\XHBBCC64
rem if "%2" == "/b" set GT=gtwin
rem if not "%2" == "/b" set GT=gtgui
set GT=gtgui
ECHO Compiling...

set hdir=%HBDIR%
set hdirl=%hdir%\lib
set fwh=%FWDIR%
set bcdir=c:\BCC7764

echo %hdir%\bin\harbour %1 /n /d__64__ /i%fwh%\include;%hdir%\include /w /p %2 %3

%hdir%\bin\harbour %1 /n /d__64__ /i%fwh%\include;%hdir%\include /w /p %2 %3 > comp.log 2> warnings.log

if errorlevel 1 goto COMPILEERROR
@type comp.log
@type warnings.log

echo -O2 -e%1.exe -I%hdir%\include -I%bcdir%\include %1.c > b64.bc
%bcdir%\bin\bcc64 -c -I%hdir%\include -I%bcdir%\include\windows\sdk -I%bcdir%\include\windows\crtl -o%1.obj %1.c
:ENDCOMPILE

if EXIST %1.rc %bcdir%\bin\brc32 -r -D__64__ -I%bcdir%\include -I%bcdir%\include\windows\sdk %1

echo %bcdir%\lib\c0w64.o + > b64.bc
echo %1.obj, + >> b64.bc
echo %1.exe, + >> b64.bc
echo %1.map, + >> b64.bc

echo %fwh%\lib\Fivehx64.a %fwh%\lib\FiveC64.a %fwh%\lib\libmariadb64.a + >> b64.bc
REM echo %fwh%\lib\DrXlsx64x_bcc.a >> b64.a
echo %hdirl%\hbhpdf.a + >> b64.bc
echo %hdirl%\libharu.a + >> b64.bc
echo %hdirl%\rtl.a + >> b64.bc
echo %hdirl%\gtgui.a + >> b64.bc
echo %hdirl%\vm.a + >> b64.bc
echo %hdirl%\lang.a + >> b64.bc
echo %hdirl%\macro.a + >> b64.bc
echo %hdirl%\rdd.a + >> b64.bc
echo %hdirl%\dbfntx.a + >> b64.bc
echo %hdirl%\dbfcdx.a + >> b64.bc
echo %hdirl%\dbffpt.a + >> b64.bc
echo %hdirl%\sixapi.a + >> b64.bc
echo %hdirl%\debug.a + >> b64.bc
echo %hdirl%\common.a + >> b64.bc
echo %hdirl%\pp.a + >> b64.bc
echo %hdirl%\codepage.a + >> b64.bc
echo %hdirl%\ct.a + >> b64.bc
echo %hdirl%\zlib.a + >> b64.bc
echo %hdirl%\png.a + >> b64.bc
echo %hdirl%\tip.a + >> b64.bc
echo %hdirl%\rdd.a + >> b64.bc
echo %hdirl%\hbsix.a + >> b64.bc
echo %hdirl%\pcrepos.a + >> b64.bc
echo %hdirl%\hbzebra.a + >> b64.bc
echo %hdirl%\zlib.a + >> b64.bc
echo %hdirl%\hbzip.a + >> b64.bc
echo %hdirl%\hbcurl.a + >> b64.bc
echo %hdirl%\libcurl.a + >> b64.bc

echo %bcdir%\lib\cw64.a + >> b64.bc
echo %bcdir%\lib\psdk\kernel32.a + >> b64.bc
echo %bcdir%\lib\psdk\user32.a + >> b64.bc
echo %bcdir%\lib\psdk\iphlpapi.a + >> b64.bc
echo %bcdir%\lib\import64.a, >> b64.bc

if EXIST %1.res echo %1.res >> b64.bc
if %GT% == gtwin %bcdir%\bin\ilink64 -Gn -Tpe -s @b64.bc
if ERRORLEVEL 1 GOTO LINKERROR
if %GT% == gtgui %bcdir%\bin\ilink64 -Gn -aa -Tpe -s @b64.bc
if ERRORLEVEL 1 GOTO LINKERROR
ECHO * Application successfully built *
rem signtool.exe sign /fd sha256 %1.exe
%1
GOTO EXIT
ECHO

:COMPILEERROR
@type comp.log
@type warnings.log
ECHO * Compiling errors *
GOTO EXIT

:LINKERROR
ECHO * Linking errors *
GOTO EXIT

:SINTAX
ECHO    SYNTAX: Build [Program]     {-- No especifiques la extensi?n PRG
ECHO                                {-- Don't specify .PRG extension
GOTO EXIT

:NOEXIST
ECHO The specified PRG %1 does not exist

:EXIT

Regards, saludos.

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 1820
Joined: Wed Oct 26, 2005 02:49 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Tue May 12, 2026 05:07 PM

Estos son los archivos que aparecen en la carpeta

C:\fwh64_2603\lib>dir
 El volumen de la unidad C no tiene etiqueta.

 Directorio de C:\fwh64_2603\lib

12/05/2026  11:18    <DIR>          .
12/05/2026  11:18    <DIR>          ..
20/03/2026  19:43         1.671.388 DrXlsx64.lib
20/03/2026  19:43         1.069.684 DrXlsx64x_bcc.a
20/03/2026  19:43         1.133.956 DrXlsx64_bcc.a
02/05/2026  17:57        10.498.902 Five64.a
02/05/2026  17:59         2.413.272 FiveC64.a
02/05/2026  17:50        16.676.304 FiveH64.lib
02/05/2026  17:51         3.147.066 FiveHC64.lib
23/03/2026  07:24         7.950.548 FiveHG64.lib
23/03/2026  08:09        37.016.706 FiveHGC64.lib
02/05/2026  17:50        17.143.202 Fivehxh64.lib
02/05/2026  17:53         5.505.146 Fivexh64.a
20/03/2026  19:43           288.286 hbhpdf64.lib
20/03/2026  19:43         1.733.948 libhpdf64.lib
29/03/2026  06:41            15.904 libmariadb64.a
24/03/2026  16:22            50.842 libmariadb64.lib
28/03/2026  00:54            15.904 libmariadb64_bcc64.a
01/05/2026  12:43           167.358 libmariadb64_gcc.a
20/03/2026  19:43             9.570 libmysql64.a
20/03/2026  19:43            26.832 libmysql64.lib
20/03/2026  19:43         1.249.122 xlsxlibhbbcc64.a
20/03/2026  19:43           545.792 xlsxlibhbbccx64.lib
20/03/2026  19:43         1.996.064 xlsxlibhbmsvc64.lib
20/03/2026  19:43             1.960 xmath.a
              23 archivos    110.327.756 bytes
               2 dirs  280.863.182.848 bytes libres

C:\fwh64_2603\lib>
Saludos
LEANDRO AREVALO
Bogotá (Colombia)
https://hymlyma.com
https://hymplus.com/
leandroalfonso111@gmail.com
leandroalfonso111@hotmail.com

[ Turbo Incremental Link64 6.98 Embarcadero 7.70 ] [ FiveWin 25.01 ] [ xHarbour 64 bits) ]
Posts: 8559
Joined: Tue Dec 20, 2005 07:36 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Tue May 12, 2026 05:20 PM

Leandro, los tamaños de los archivos son diferentes, mira:

 Pasta(Carpeta) de C:\FWH64263\lib

20/03/2026  19:43        10.709.394 Fivehx64.a
20/03/2026  19:43        10.376.276 FiveHX64.lib
               2 arquivo(s)     21.085.670 bytes

Regards, saludos.

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 44229
Joined: Thu Oct 06, 2005 05:47 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Wed May 13, 2026 03:23 AM

Estimado Leandro,

Al enlazar estás usando FIVEHX64.A.

Cámbialo a FIVEXH64.A.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1820
Joined: Wed Oct 26, 2005 02:49 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Wed May 13, 2026 01:52 PM

Ya compilo pero se generaron estos errores:

C:\cmplar_64>c:\xHar2501_64\bin\hbmk2.exe xhbcmp.hbp -xhb -comp=bcc64
hbmk2: Linking... hymlyma.exe
Turbo Incremental Link64 6.98 Copyright (c) 1997-2023 Embarcadero Technologies, Inc.
Error: Unresolved external 'hb_storvnll' referenced from C:\FWH64_2603\LIB\FIVEC64.A|wndis.obj
Error: Unresolved external 'hb_storvni' referenced from C:\FWH64_2603\LIB\FIVEC64.A|wndis.obj
Error: Unresolved external 'hb_storvc' referenced from C:\FWH64_2603\LIB\FIVEC64.A|wndis.obj
Error: Unresolved external 'hb_storvnl' referenced from C:\FWH64_2603\LIB\FIVEC64.A|wndis.obj
Error: Unresolved external 'hb_vmCDP' referenced from C:\FWH64_2603\LIB\FIVEC64.A|fwunicode.obj
Error: Unresolved external 'hb_parvnl' referenced from C:\FWH64_2603\LIB\FIVEC64.A|harbourc.obj
Error: Unresolved external 'hb_parvnll' referenced from C:\FWH64_2603\LIB\FIVEC64.A|harbourc.obj
Error: Unresolved external 'HB_FUN_ISINLIST' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|filename.obj
Error: Unresolved external 'HB_FUN_CVALTOCHAR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|filename.obj
Error: Unresolved external 'HB_FUN___DBGVMSTKLCOUNT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|harbour.obj
Error: Unresolved external 'HB_FUN___DBGVMPARLLIST' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|harbour.obj
Error: Unresolved external 'HB_FUN___DBGVMVARLGET' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|harbour.obj
Error: Unresolved external 'HB_FUN___DBGVMVARSLEN' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|harbour.obj
Error: Unresolved external 'HB_FUN_HB_COMPILEFROMBUF' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|harbour.obj
Error: Unresolved external 'HB_FUN_HB_HRBDO' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|harbour.obj
Error: Unresolved external 'HB_FUN_HB_HRBLOAD' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|harbour.obj
Error: Unresolved external 'HB_FUN_TFONT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|alert.obj
Error: Unresolved external 'HB_FUN_SETDLGGRADIENT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|getsysin.obj
Error: Unresolved external 'HB_FUN___CLSLOCKDEF' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|reg32.obj
Error: Unresolved external 'hb_storvclen' referenced from C:\FWH64_2603\LIB\FIVEC64.A|regedit.obj
Error: Unresolved external 'HB_FUN___CLSUNLOCKDEF' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|reg32.obj
Error: Unresolved external 'HB_FUN_THISSTRUCT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|reg32.obj
Error: Unresolved external 'HB_FUN_TSTRUCT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|reg32.obj
Error: Unresolved external 'HB_FUN_HB_NUMTOHEX' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|getsysin.obj
Error: Unresolved external 'HB_FUN_TWINDOW' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|getsysin.obj
Error: Unresolved external 'HB_FUN_IFNIL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|rect.obj
Error: Unresolved external 'HB_FUN_FW_VALTOEXP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|rect.obj
Error: Unresolved external 'HB_FUN_FW_ARRAYASLIST' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|getsysin.obj
Error: Unresolved external 'hb_parvni' referenced from C:\FWH64_2603\LIB\FIVEC64.A|rects.obj
Error: Unresolved external 'hb_storvl' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|getsysin.obj
Error: Unresolved external 'HB_FUN_TDIALOG' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|alert.obj
Error: Unresolved external 'HB_FUN_TICON' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|alert.obj
Error: Unresolved external 'HB_FUN_TBRUSH' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|alert.obj
Error: Unresolved external 'HB_FUN_TCONTROL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|mget.obj
Error: Unresolved external 'hb_storvnd' referenced from C:\FWH64_2603\LIB\FIVEC64.A|color.obj
Error: Unresolved external 'hb_parvnd' referenced from C:\FWH64_2603\LIB\FIVEC64.A|color.obj
Error: Unresolved external 'HB_FUN_DLGFINDTEXT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|mget.obj
Error: Unresolved external 'HB_FUN_GETWNDDEFAULT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|mget.obj
Error: Unresolved external 'HB_FUN_TCLIPBOARD' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|mget.obj
Error: Unresolved external 'HB_FUN_WNDCREATEERROR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|mget.obj
Error: Unresolved external 'HB_FUN_STATICHTML' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|say.obj
Error: Unresolved external 'HB_FUN_TLISTBOX' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dostofwh.obj
Error: Unresolved external 'HB_FUN_TBTNBMP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dostofwh.obj
Error: Unresolved external 'HB_FUN_WNDMAIN' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dostofwh.obj
Error: Unresolved external 'HB_FUN_HB_ADEL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwdecode.obj
Error: Unresolved external 'HB_FUN_XEVAL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwdecode.obj
Error: Unresolved external 'HB_FUN_UVALBLANK' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwdecode.obj
Error: Unresolved external 'HB_FUN_FW_STRICMP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwdecode.obj
Error: Unresolved external 'HB_FUN_XBROWSENEW' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dostofwh.obj
Error: Unresolved external 'HB_FUN_EDITHTML' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_PALBMPFREE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_TBUTTONBMP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_GRADIENTBMP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_RESIZEBITMAP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_HB_PISBYREF' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'hb_parvc' referenced from C:\FWH64_2603\LIB\FIVEC64.A|aat.obj
Error: Unresolved external 'HB_FUN_TRICHEDIT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|rtfbox.obj
Error: Unresolved external 'HB_FUN_FW_LISTASARRAY' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FW_AT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FWER_BARCODE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_SETALPHA' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'hb_parvl' referenced from C:\FWH64_2603\LIB\FIVEC64.A|fonts.obj
Error: Unresolved external 'hb_parvclen' referenced from C:\FWH64_2603\LIB\FIVEC64.A|fonts.obj
Error: Unresolved external 'HB_FUN_ISBINARYDATA' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FREEIMAGEISLOADED' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FILOADIMG' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_PALBMPNEW' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FILOADFROMMEMORY' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FITYPEFROMMEMORY' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_WQOUT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FI_GETFILETYPEFROMFILENAME' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FI_SUPPORTSWRITING' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_FICONVERTIMAGEFILE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_TBITMAP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|msgget.obj
Error: Unresolved external 'HB_FUN_TBUTTON' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|msgget.obj
Error: Unresolved external 'HB_FUN_TDATAROW' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|msgget.obj
Error: Unresolved external 'HB_FUN_TACTIVEX' referenced from C:\CMPLAR_64\OBJ\R32_MENU.O
Error: Unresolved external 'HB_FUN_TCURSOR' referenced from C:\CMPLAR_64\OBJ\R32_MENU.O
Error: Unresolved external 'HB_FUN_SETBALLOON' referenced from C:\CMPLAR_64\OBJ\R32_MENU.O
Error: Unresolved external 'HB_FUN_HB_DATETIME' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|adofuncs.obj
Error: Unresolved external 'HB_FUN_TRECSET' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|adofuncs.obj
Error: Unresolved external 'HB_FUN_TFGET' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_TRICHEDIT5' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_TBAR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_MNUCOLORS' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_TCOMBOBOX' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_TEDIT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_HB_CURDRIVE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|scintila.obj
Error: Unresolved external 'HB_FUN_FONTFROMTEXT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|scintila.obj
Error: Unresolved external 'HB_FUN_UTF16TOUTF8' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|scintila.obj
Error: Unresolved external 'HB_FUN_NUMPICT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tarrdata.obj
Error: Unresolved external 'HB_FUN_FW_ARRAYTOHTML' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dbffunc1.obj
Error: Unresolved external 'HB_FUN_ARRTOJSON' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dbffunc1.obj
Error: Unresolved external 'HB_FUN_ARRTOHASH' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dbffunc1.obj
Error: Unresolved external 'HB_FUN_FW_EXPRNASBLOCK' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tarrdata.obj
Error: Unresolved external 'HB_FUN_FW_TRANSFORM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tarrdata.obj
Error: Unresolved external 'HB_FUN_FW_TTOD' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tarrdata.obj
Error: Unresolved external 'HB_FUN_FW_DTOT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tarrdata.obj
Error: Unresolved external 'HB_FUN_FWMSWORDDOC' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|printer.obj
Error: Unresolved external 'HB_FUN_XIMAGE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|printer.obj
Error: Unresolved external 'HB_FUN_XIMAGEARRAY' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|printer.obj
Error: Unresolved external 'HB_FUN_TTOOLBAR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|rpreview.obj
Error: Unresolved external 'HB_FUN_ATOTEXT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|menuitem.obj
Error: Unresolved external 'HB_FUN_OREAD' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|menuitem.obj
Error: Unresolved external 'HB_FUN_TTREEVIEW' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|menu.obj
Error: Unresolved external 'HB_FUN_TREEBEGIN' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|menu.obj
Error: Unresolved external 'HB_FUN__TREEITEM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|menu.obj
Error: Unresolved external 'HB_FUN_TREEEND' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|menu.obj
Error: Unresolved external 'HB_FUN_CVALTOSTR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|pdmenu.obj
Error: Unresolved external 'HB_FUN_GETALLWIN' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|mdiframe.obj
Error: Unresolved external 'HB_FUN_SETWNDDEFAULT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|mdiclien.obj
Error: Unresolved external 'HB_FUN_TMSGITEM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|msgbar.obj
Error: Unresolved external 'HB_FUN_GETFREESYSTEMRESOURCES' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|msgbar.obj
Error: Unresolved external 'HB_FUN_TIMEFROMSTART' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|msgbar.obj
Error: Unresolved external 'HB_FUN_TGROUP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|rpreview.obj
Error: Unresolved external 'HB_FUN_HB_TTOS' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|rpreview.obj
Error: Unresolved external 'HB_FUN_TCHECKBOX' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|scintila.obj
Error: Unresolved external 'HB_FUN_WHEELSCROLL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|scintila.obj
Error: Unresolved external 'HB_FUN_HB_EOL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|scintila.obj
Error: Unresolved external 'HB_FUN_FW_TRIM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_HASHTREE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_XBROWSE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|memoedit.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPOPEN' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_FNAMEDIR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_DIRSEPADD' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPFILEFIRST' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPFILEINFO' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPFILEOPEN' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPFILEREAD' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPFILECLOSE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_FSETDATETIME' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPFILENEXT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN_HB_UNZIPCLOSE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|olefuncs.obj
Error: Unresolved external 'HB_FUN___DYNSN2SYM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|drxl.obj
Error: Unresolved external 'HB_FUN_HB_GETENV' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|drxl.obj
Error: Unresolved external 'HB_FUN_FWNUMFORMAT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|drxl.obj
Error: Unresolved external 'HB_FUN_ISRECORDSET' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|drxl.obj
Error: Unresolved external 'HB_FUN_UCHARTOVAL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|dbffunc2.obj
Error: Unresolved external 'HB_FUN_HB_STRTOHEX' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|adofuncs.obj
Error: Unresolved external 'HB_FUN_FW_TIMEPART' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|adofuncs.obj
Error: Unresolved external 'HB_FUN_HB_CTOT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|adofuncs.obj
Error: Unresolved external 'HB_FUN___OLEVARIANTNEW' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|adofuncs.obj
Error: Unresolved external 'HB_FUN_TXBROWSE' referenced from C:\CMPLAR_64\OBJ\ABUSC.O
Error: Unresolved external 'HB_FUN_TTXTFILE' referenced from C:\CMPLAR_64\OBJ\R32_TERC.O
Error: Unresolved external 'HB_FUN_TINI' referenced from C:\CMPLAR_64\OBJ\ABUSC.O
Error: Unresolved external 'HB_FUN_TDBCOMBO' referenced from C:\CMPLAR_64\OBJ\ABUSC.O
Error: Unresolved external 'HB_FUN_TIMAGE' referenced from C:\CMPLAR_64\OBJ\PHOTOS.O
Error: Unresolved external 'HB_FUN_TFOLDER' referenced from C:\CMPLAR_64\OBJ\ABUSC.O
Error: Unresolved external 'HB_FUN_TXIMAGE' referenced from C:\CMPLAR_64\OBJ\ABUSC.O
Error: Unresolved external 'HB_FUN_FW_ADDTIME' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tdtpicke.obj
Error: Unresolved external 'hb_rettdt' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tdtpicke.obj
Error: Unresolved external 'HB_FUN_VRD' referenced from C:\CMPLAR_64\OBJ\AINVE.O
Error: Unresolved external 'HB_FUN_FW_EREPORT' referenced from C:\CMPLAR_64\OBJ\ADOIN.O
Error: Unresolved external 'HB_FUN_TOAST' referenced from C:\CMPLAR_64\OBJ\FUNCIONES.O
Error: Unresolved external 'HB_FUN_ROINITIALIZE' referenced from C:\CMPLAR_64\OBJ\FUNCIONES.O
Error: Unresolved external 'HB_FUN_WINDOWSCREATESTRING' referenced from C:\CMPLAR_64\OBJ\FUNCIONES.O
Error: Unresolved external 'HB_FUN_ROUNINITIALIZE' referenced from C:\CMPLAR_64\OBJ\FUNCIONES.O
Error: Unresolved external 'HB_FUN_WINDOWSDELETESTRING' referenced from C:\CMPLAR_64\OBJ\FUNCIONES.O
Error: Unresolved external 'HB_FUN_TURLLINK' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|texplbar.obj
Error: Unresolved external 'HB_FUN_OWNDFROMHWND' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|texplbar.obj
Error: Unresolved external 'HB_FUN_TSAYBARCODE' referenced from C:\CMPLAR_64\OBJ\R32_EXT1.O
Error: Unresolved external 'HB_FUN_TPROGRESS' referenced from C:\CMPLAR_64\OBJ\R32_FACT.O
Error: Unresolved external 'HB_FUN_TPANEL' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tdockpnel.obj
Error: Unresolved external 'HB_FUN_TTITLE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tdockpnel.obj
Error: Unresolved external 'HB_FUN_TRIBBONBAR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tdockpnel.obj
Error: Unresolved external 'HB_FUN_GRADIENTBRUSH' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tfoldex.obj
Error: Unresolved external 'HB_FUN_ARRAYTOTEXT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tfoldex.obj
Error: Unresolved external 'HB_FUN_HB_STOT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'HB_FUN_PARSEXBRCOLSPEC' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwrowset.obj
Error: Unresolved external 'HB_FUN_HB_WILDMATCHI' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwrowset.obj
Error: Unresolved external 'HB_FUN_HB_HSETCASEMATCH' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'HB_FUN_HB_WILDMATCH' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'HB_FUN_HB_AT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'HB_FUN_FW_ALLTRIM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'HB_FUN_HB_UTCOFFSET' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'hb_retclen_buffer' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'hb_timeStampStrGetDT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|fwmaria.obj
Error: Unresolved external 'HB_FUN_TTIMEPICK' referenced from C:\CMPLAR_64\OBJ\ABASC.O
Error: Unresolved external 'HB_FUN_TWEBVIEW' referenced from C:\CMPLAR_64\OBJ\R32_MANU.O
Error: Unresolved external 'HB_FUN_ISWEBVIEWAVAILABLE' referenced from C:\CMPLAR_64\OBJ\R32_MENU.O
Error: Unresolved external 'HB_FUN_ROTATEBMP' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_UTF8TOUTF16' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_GETCLIPCONTENTFORMAT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|imgtxtio.obj
Error: Unresolved external 'HB_FUN_NSTRTONUM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_FW_PROPERCASE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_FW_UTF8LEFT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_FW_UTF8SUBSTR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_FW_UTF8STUFF' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_HB_TTOC' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|tget.obj
Error: Unresolved external 'HB_FUN_GETINISECTION' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|ertools.obj
Error: Unresolved external 'HB_FUN_GETINIENTRY' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|ertools.obj
Error: Unresolved external 'HB_FUN_VRD_LF2SF' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|erfile.obj
Error: Unresolved external 'HB_FUN_VRDITEM' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|eritems.obj
Error: Unresolved external 'HB_FUN_VRDBARCODE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|eritems.obj
Error: Unresolved external 'HB_FUN_TWBROWSE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|browse.obj
Error: Unresolved external 'HB_FUN_ENTRYNR' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|ereport.obj
Error: Unresolved external 'HB_FUN_SETGRIDSIZE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|ereport.obj
Error: Unresolved external 'HB_FUN_DELFILE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|erfile.obj
Error: Unresolved external 'HB_FUN_VRD_ATOKEN' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|ertools.obj
Error: Unresolved external 'HB_FUN_XPADC' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|ertools.obj
Error: Unresolved external 'HB_FUN_FW_SETDARKMODE' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|errsysw.obj
Error: Unresolved external 'HB_FUN_DRAWHORZ' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|slider.obj
Error: Unresolved external 'HB_FUN_DRAWVERT' referenced from C:\FWH64_2603\LIB\FIVEXH64.A|slider.obj
Error: Unresolved external 'HB_FUN_TWEBVIEW2' referenced from C:\CMPLAR_64\OBJ\R64_FACT.O
hbmk2[xhbcmp]: Error: Running linker. 2
ilink64.exe @C:\Users\leandro\AppData\Local\Temp\10\589bqm.lnk

hbmk2: Error: Referenced, missing, but unknown function(s): ISINLIST(),
       CVALTOCHAR(), __DBGVMSTKLCOUNT(), __DBGVMPARLLIST(), __DBGVMVARLGET(),
       __DBGVMVARSLEN(), HB_COMPILEFROMBUF(), HB_HRBDO(), HB_HRBLOAD(),
       TFONT(), SETDLGGRADIENT(), __CLSLOCKDEF(), __CLSUNLOCKDEF(),
       THISSTRUCT(), TSTRUCT(), HB_NUMTOHEX(), TWINDOW(), IFNIL(),
       FW_VALTOEXP(), FW_ARRAYASLIST(), TDIALOG(), TICON(), TBRUSH(),
       TCONTROL(), DLGFINDTEXT(), GETWNDDEFAULT(), TCLIPBOARD(),
       WNDCREATEERROR(), STATICHTML(), TLISTBOX(), TBTNBMP(), WNDMAIN(),
       HB_ADEL(), XEVAL(), UVALBLANK(), FW_STRICMP(), XBROWSENEW(), EDITHTML(),
       PALBMPFREE(), TBUTTONBMP(), GRADIENTBMP(), RESIZEBITMAP(),
       HB_PISBYREF(), TRICHEDIT(), FW_LISTASARRAY(), FW_AT(), FWER_BARCODE(),
       SETALPHA(), ISBINARYDATA(), FREEIMAGEISLOADED(), FILOADIMG(),
       PALBMPNEW(), FILOADFROMMEMORY(), FITYPEFROMMEMORY(), WQOUT(),
       FI_GETFILETYPEFROMFILENAME(), FI_SUPPORTSWRITING(),
       FICONVERTIMAGEFILE(), TBITMAP(), TBUTTON(), TDATAROW(), TACTIVEX(),
       TCURSOR(), SETBALLOON(), HB_DATETIME(), TRECSET(), TFGET(),
       TRICHEDIT5(), TBAR(), MNUCOLORS(), TCOMBOBOX(), TEDIT(), HB_CURDRIVE(),
       FONTFROMTEXT(), UTF16TOUTF8(), NUMPICT(), FW_ARRAYTOHTML(), ARRTOJSON(),
       ARRTOHASH(), FW_EXPRNASBLOCK(), FW_TRANSFORM(), FW_TTOD(), FW_DTOT(),
       FWMSWORDDOC(), XIMAGE(), XIMAGEARRAY(), TTOOLBAR(), ATOTEXT(), OREAD(),
       TTREEVIEW(), TREEBEGIN(), _TREEITEM(), TREEEND(), CVALTOSTR(),
       GETALLWIN(), SETWNDDEFAULT(), TMSGITEM(), GETFREESYSTEMRESOURCES(),
       TIMEFROMSTART(), TGROUP(), HB_TTOS(), TCHECKBOX(), WHEELSCROLL(),
       HB_EOL(), FW_TRIM(), HASHTREE(), XBROWSE(), HB_UNZIPOPEN(),
       HB_FNAMEDIR(), HB_DIRSEPADD(), HB_UNZIPFILEFIRST(), HB_UNZIPFILEINFO(),
       HB_UNZIPFILEOPEN(), HB_UNZIPFILEREAD(), HB_UNZIPFILECLOSE(),
       HB_FSETDATETIME(), HB_UNZIPFILENEXT(), HB_UNZIPCLOSE(), __DYNSN2SYM(),
       HB_GETENV(), FWNUMFORMAT(), ISRECORDSET(), UCHARTOVAL(), HB_STRTOHEX(),
       FW_TIMEPART(), HB_CTOT(), __OLEVARIANTNEW(), TXBROWSE(), TTXTFILE(),
       TINI(), TDBCOMBO(), TIMAGE(), TFOLDER(), TXIMAGE(), FW_ADDTIME(), VRD(),
       FW_EREPORT(), TOAST(), ROINITIALIZE(), WINDOWSCREATESTRING(),
       ROUNINITIALIZE(), WINDOWSDELETESTRING(), TURLLINK(), OWNDFROMHWND(),
       TSAYBARCODE(), TPROGRESS(), TPANEL(), TTITLE(), TRIBBONBAR(),
       GRADIENTBRUSH(), ARRAYTOTEXT(), HB_STOT(), PARSEXBRCOLSPEC(),
       HB_WILDMATCHI(), HB_HSETCASEMATCH(), HB_WILDMATCH(), HB_AT(),
       FW_ALLTRIM(), HB_UTCOFFSET(), TTIMEPICK(), TWEBVIEW(),
       ISWEBVIEWAVAILABLE(), ROTATEBMP(), UTF8TOUTF16(),
       GETCLIPCONTENTFORMAT(), NSTRTONUM(), FW_PROPERCASE(), FW_UTF8LEFT(),
       FW_UTF8SUBSTR(), FW_UTF8STUFF(), HB_TTOC(), GETINISECTION(),
       GETINIENTRY(), VRD_LF2SF(), VRDITEM(), VRDBARCODE(), TWBROWSE(),
       ENTRYNR(), SETGRIDSIZE(), DELFILE(), VRD_ATOKEN(), XPADC(),
       FW_SETDARKMODE(), DRAWHORZ(), DRAWVERT(), TWEBVIEW2()

C:\cmplar_64>
Saludos
LEANDRO AREVALO
Bogotá (Colombia)
https://hymlyma.com
https://hymplus.com/
leandroalfonso111@gmail.com
leandroalfonso111@hotmail.com

[ Turbo Incremental Link64 6.98 Embarcadero 7.70 ] [ FiveWin 25.01 ] [ xHarbour 64 bits) ]
Posts: 44229
Joined: Thu Oct 06, 2005 05:47 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Sat May 16, 2026 09:30 AM

Estimado Leandro,

He reproducido y corregido el problema. No es de tu código — es un fallo de las librerías xb64 (xHarbour+BCC64) de FWH
26.03.

Los errores son de 3 tipos:

  1. hb_storvnl, hb_parvnl, hb_vmCDP, hb_retclen_buffer, hb_timeStampStrGetDT, etc. (desde FIVEC64.A)
    FiveC64.a se compiló con cabeceras de Harbour y usa funciones C exclusivas de Harbour que xHarbour no tiene. Corregido
    con una capa de compatibilidad nueva (fwhxhb.h).

  2. Clases FWH HB_FUN_TXBROWSE, TWEBVIEW2, VRD, TOAST, etc. (desde FIVEXH64.A y tus .O)
    Fivexh64.a venía incompleta — faltaban objetos porque harbour.obj no compilaba bajo BCC64 (un #include de cabeceras
    COM fallaba y arrastraba el resto). Corregido: Fivexh64.a regenerada y completa.

  3. HB_FUN___DBGVMSTKLCOUNT, HB_HRBDO, HB_HRBLOAD, HB_COMPILEFROMBUF, __CLSLOCKDEF, __DYNSN2SYM, __OLEVARIANTNEW etc.
    Estas NO son de FWH — son funciones internas del VM de xHarbour (debugger, macro-compiler, runtime). Tu link no está
    incluyendo todas las librerías core de xHarbour. En tu xhbcmp.hbp añade las libs de c:\xHar2501_64\lib que falten:
    debug, macro, rtl, vm, pp, common. Con hbmk2 -xhb suelen entrar automáticas, pero debug.lib a veces hay que pedirla
    explícita.

    Estado:

  4. Tipos 1 y 2: corregidos, salen en la próxima beta de FWH con las librerías xb64 regeneradas.

  5. Verificado end-to-end: samples/misc/fivedbu.prg compila, enlaza y arranca limpio en xb64.

    Qué hacer:

  6. Instala la próxima beta (te aviso cuando esté).

    Si me pasas tu xhbcmp.hbp te digo exactamente qué línea añadir.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1820
Joined: Wed Oct 26, 2005 02:49 PM

Re: Error al intentar compilar con fwh64 2603

Posted: Thu May 21, 2026 07:00 PM

Antonio buenas tardes, como siempre gracias por la ayuda.

Este es el archivo .hbp que usamos para compilar

-gui

#los prgs
.\PRG\R32_menu.prg
.\PRG\R32_perm.prg
.\PRG\R32_bode.prg
.\PRG\R32_cate.prg
.\PRG\R32_ciud.prg
.\PRG\R32_colo.prg
.\PRG\R32_tall.prg
.\PRG\R32_niv1.prg
.\PRG\R32_niv2.prg
.\PRG\R32_niv3.prg
.\PRG\R32_medi.prg
.\PRG\R32_lipr.prg
.\PRG\R32_comp.prg
.\PRG\R32_cent.prg
.\PRG\R32_ctas.prg
.\PRG\R32_arti.prg
.\PRG\R32_terc.prg
.\PRG\R32_caca.prg
.\PRG\R32_llav.prg
.\PRG\R32_caja.prg
.\PRG\R32_usua.prg
.\PRG\R32_rcja.prg
.\PRG\R32_cofac.prg
.\PRG\R32_rin1.prg
.\PRG\R32_dofa.prg
.\PRG\R32_crcc.prg
.\PRG\R32_cier.prg
.\PRG\R32_rin2.prg
.\PRG\R32_rin3.prg
.\PRG\R32_rve1.prg
.\PRG\R32_empr.prg
.\PRG\R32_conf.prg
.\PRG\Funciones.prg
.\PRG\R32_fact.prg
.\PRG\Afact.prg
.\PRG\Asql.prg
.\PRG\Aitem.prg
.\PRG\Abusc.prg
.\PRG\R32_rve2.prg
.\PRG\Tdeskalert.prg
.\PRG\Anota.prg
.\PRG\R32_nota.prg
#.\PRG\Cdosys.prg
.\PRG\Arete.prg
.\PRG\R32_reci.prg
.\PRG\Areci.prg
.\PRG\R32_coin.prg
.\PRG\Adoin.prg
.\PRG\R32_coco.prg
.\PRG\R32_tabl.prg
.\PRG\Acoco.prg
.\PRG\Atabla.prg
.\PRG\R32_cact.prg
.\PRG\Ainfo.prg
.\PRG\Ainve.prg
.\PRG\R32_rve3.prg
.\PRG\Ajson.prg
.\PRG\R32_inic.prg
.\PRG\Temporales.prg
.\PRG\Amete.prg
.\PRG\Afpag.prg
.\PRG\R32_rca1.prg
.\PRG\R32_sopo.prg
.\PRG\Asopo.prg
.\PRG\Hym_enti.prg
.\PRG\Hym_ntbl.prg
.\PRG\R32_trab.prg
.\PRG\R32_rcn1.prg
.\PRG\Photos.prg
.\PRG\R32_pres.prg
.\PRG\Apres.prg
.\PRG\R32_pedi.prg
.\PRG\Apedi.prg
.\PRG\R32_basc.prg
.\PRG\Abasc.prg
.\PRG\R32_rcn2.prg
.\PRG\R32_desp.prg
.\PRG\R32_even.prg
.\PRG\Aeven.prg
.\PRG\R32_pago.prg
.\PRG\R32_orse.prg
.\PRG\Aorse.prg
.\PRG\R32_peen.prg
.\PRG\R32_info.prg
.\PRG\Aclase.prg
.\PRG\Hym_rpts.prg
.\PRG\R64_fact.prg
.\PRG\R32_rete.prg
.\PRG\R32_inte.prg
.\PRG\R32_rca2.prg
.\PRG\R32_rnm1.prg


#recursos
.\res\CONTABLE.res

-info

#-traceonly
#aqui es para colocar los archivo o y c que se generan en la compilacion incremental 
-workdir=.\obj

-optim-
-ldflag+=-aa -n- 
-Ic:\fwh64_2409\include
-Lc:\fwh64_2409\lib

-lFivehx64
-lFiveC64

-lct
-lhbzip
-ltip
-lhbcomm
-lhbcurl
-llibcurl
-lhbzebra

-lsixapi
-ltip
-lpng
-lhbhpdf
-llibharu
-lhbmxml
-llibmysql
-llibcrypto

-ohymlyma
-inc
-run
Saludos
LEANDRO AREVALO
Bogotá (Colombia)
https://hymlyma.com
https://hymplus.com/
leandroalfonso111@gmail.com
leandroalfonso111@hotmail.com

[ Turbo Incremental Link64 6.98 Embarcadero 7.70 ] [ FiveWin 25.01 ] [ xHarbour 64 bits) ]

Continue the discussion