FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour Harbour and xHarbour para MingW GCC1501
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Thu May 22, 2025 07:28 PM
It is not difficult at all. Please replace this:
".\WinXP\WindowsXP.Manifest"
with this:
"./WinXP/WindowsXP.Manifest"
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Thu May 22, 2025 08:11 PM
Enrico, cuasi... hahahaha. Jesus!

c:/gcc1501/bin/../lib/gcc/i686-w64-mingw32/15.1.0/../../../../i686-w64-mingw32/bin/ld.exe: cannot find -lC:\FwH1905\lib\libmysql32: Invalid argument
collect2.exe: error: ld returned 1 exit status
@ECHO ON
CLS
ECHO Compiling...

SET hdir=c:\HBGCC151
SET hdirc=%hdir%\bin\win\mingw\harbour.exe
SET hlibs=%hdir%\lib\win\mingw
SET mingw=c:\gcc1501
SET path=%mingw%\bin
SET fwh=C:\FwH1905

REM // Generando el .c
%hdirc% TUTOR01 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3  > comp.log 2> warnings.log
%hdirc% TUTOR02 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log
%hdirc% TUTOR03 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log
%hdirc% TUTOR04 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO COMPILEERROR

REM // Generando el .o
%mingw%\bin\gcc -c -w TUTOR01.c -oTUTOR01.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
%mingw%\bin\gcc -c -w TUTOR02.c -oTUTOR02.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
%mingw%\bin\gcc -c -w TUTOR03.c -oTUTOR03.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
%mingw%\bin\gcc -c -w TUTOR04.c -oTUTOR04.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO COMPILEERROR

if exist tutor04.rc %mingw%\bin\windres -D__FLAT__ -DDIALOG=DIALOGEX -itutor04.rc -o_tutor04.o --preprocessor "gcc -E -xc-header -include windows.h" >> comp.log 2>> warnings.log

rem aqui, cuasi que funciona... jajaja - My god!
if not exist TUTOR04.rc %mingw%\bin\gcc -oTUTOR04.exe TUTOR04.o -Wall -s -mwindows -L%mingw%\lib -L%hlibs% -L%fwh%\lib -Wl,--enable-stdcall-fixup -Wl,--start-group -lfivehg -lfivehgc -l%fwh%\lib\libmysql32 -lgtgui -luser32 -lshell32 -lwinspool -lkernel32 -lcomctl32 -lcomdlg32 -lgdi32 -lgdiplus -lole32 -loleaut32 -lpsapi -loledlg -lmfcuia32 -lmsimg32 -lwin32k -lstdc++ -lversion -luuid -lwinmm -lvfw32 -lwsock32 -lshell32 -lmpr -lws2_32 -liphlpapi -luxtheme -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbdebug -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -lhbziparc -lminizip -lhbmzip -lhbziparc -lpng -Wl,--end-group >> comp.log 2>> warnings.log

if exist     TUTOR04.rc %mingw%\bin\gcc -oTUTOR04.exe TUTOR04.o _TUTOR04.o -Wall -s -mwindows -L%mingw%\lib -L%hlibs% -L%fwh%\lib -Wl,--enable-stdcall-fixup -Wl,--start-group -lfivehg -lfivehgc -l%fwh%\lib\libmysql32 -lgtgui -luser32 -lshell32 -lwinspool -lkernel32 -lcomctl32 -lcomdlg32 -lgdi32 -lgdiplus -lole32 -loleaut32 -lpsapi -lmsimg32 -lwin32k -loledlg -lstdc++ -lmfcuia32 -lversion -luuid -lwinmm -lvfw32 -lwsock32 -lshell32 -lws2_32 -liphlpapi -lmpr -luxtheme -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbdebug -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -lhbziparc -lminizip -lhbmzip -lhbziparc -lpng -Wl,--end-group >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO LINKERROR

ECHO * Application successfully built

GOTO EXIT

ECHO

:RESOURCESERROR
ECHO * Resources errors *
GOTO EXIT

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

:LINKERROR
ECHO * Link errors *
GOTO EXIT

:SINTAX
ECHO    ERROR
ECHO    NAO COMPILOU
GOTO EXIT

:NOEXIST
ECHO The specified PRG does not exist

:EXIT
Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Thu May 22, 2025 09:07 PM
Replace this:
-l%fwh%\lib\libmysql32
with this:
-llibmysql32
Please reread this whole thread. All is already explained.
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Fri May 23, 2025 01:15 PM

c:/gcc1501/bin/../lib/gcc/i686-w64-mingw32/15.1.0/../../../../i686-w64-mingw32/bin/ld.exe: cannot find -libmysql32: No such file or directory

collect2.exe: error: ld returned 1 exit status

¡ME RINDO! Gracias Enrico por tu ayuda. Este compilador es demasiado complicado para mi gusto personal. Me quedaré con BCC77 ya que no tengo dificultades para compilar con él. En otra ocasión vuelvo a intentarlo con este compilador. Hasta ahora solo he perdido el tiempo.

I GIVE UP! Thanks Enrico for your help. This compiler is too complicated for my personal taste. I'll stick with BCC77, which I have no difficulty compiling with. I'll try again with this compiler another time. So far, I've just wasted time.

Gracias, tks.

Regards, saludos.

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Fri May 23, 2025 02:13 PM
This is the batch I'm using that is working fine here (check your paths):
@ECHO ON
CLS
ECHO Compiling...

SET hdir=e:\fw\harbour
SET hdirc=%hdir%\bin\win\mingw\harbour.exe
SET hlibs=%hdir%\lib\win\mingw
SET mingw=e:\fw\temp\mgw32
SET path=%mingw%\bin
SET fwh=e:\fw\fwharbour

REM // Generando el .c
REM %hdirc% TUTOR01 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3  > comp.log 2> warnings.log
REM %hdirc% TUTOR02 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log
REM %hdirc% TUTOR03 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log
%hdirc% TUTOR04 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO COMPILEERROR

REM // Generando el .o
REM %mingw%\bin\gcc -c -w TUTOR01.c -oTUTOR01.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
REM %mingw%\bin\gcc -c -w TUTOR02.c -oTUTOR02.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
REM %mingw%\bin\gcc -c -w TUTOR03.c -oTUTOR03.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
%mingw%\bin\gcc -c -w TUTOR04.c -oTUTOR04.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO COMPILEERROR

if exist tutor04.rc %mingw%\bin\windres -D__FLAT__ -DDIALOG=DIALOGEX -itutor04.rc -o_tutor04.o --preprocessor "gcc -E -xc-header -include windows.h" >> comp.log 2>> warnings.log

rem aqui, cuasi que funciona... jajaja - My god!
if not exist TUTOR04.rc %mingw%\bin\gcc -oTUTOR04.exe TUTOR04.o -Wall -s -mwindows -L%mingw%\lib -L%hlibs% -L%fwh%\lib -Wl,--enable-stdcall-fixup -Wl,--start-group -lfivehg -lfivehgc -llibmysql32 -lgtgui -luser32 -lshell32 -lwinspool -lkernel32 -lcomctl32 -lcomdlg32 -lgdi32 -lgdiplus -lole32 -loleaut32 -lpsapi -loledlg -lmfcuia32 -lmsimg32 -lwin32k -lstdc++ -lversion -luuid -lwinmm -lvfw32 -lwsock32 -lshell32 -lmpr -lws2_32 -liphlpapi -luxtheme -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbdebug -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -lhbziparc -lminizip -lhbmzip -lhbziparc -lpng -Wl,--end-group >> comp.log 2>> warnings.log

if exist     TUTOR04.rc %mingw%\bin\gcc -oTUTOR04.exe TUTOR04.o _TUTOR04.o -Wall -s -mwindows -L%mingw%\lib -L%hlibs% -L%fwh%\lib -Wl,--enable-stdcall-fixup -Wl,--start-group -lfivehg -lfivehgc -llibmysql32 -lgtgui -luser32 -lshell32 -lwinspool -lkernel32 -lcomctl32 -lcomdlg32 -lgdi32 -lgdiplus -lole32 -loleaut32 -lpsapi -lmsimg32 -lwin32k -loledlg -lstdc++ -lmfcuia32 -lversion -luuid -lwinmm -lvfw32 -lwsock32 -lshell32 -lws2_32 -liphlpapi -lmpr -luxtheme -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbdebug -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -lhbziparc -lminizip -lhbmzip -lhbziparc -lpng -Wl,--end-group >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO LINKERROR

ECHO * Application successfully built

GOTO EXIT

ECHO

:RESOURCESERROR
ECHO * Resources errors *
GOTO EXIT

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

:LINKERROR
ECHO * Link errors *
GOTO EXIT

:SINTAX
ECHO    ERROR
ECHO    NAO COMPILOU
GOTO EXIT

:NOEXIST
ECHO The specified PRG does not exist

:EXIT
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Fri May 23, 2025 03:41 PM
Thank you very much Enrico!
REM MINGW.BAT by Enrico Maria Giordano. 23/05/2025 - Very Good.

@ECHO OFF
CLS
ECHO Compiling MINGW GCC 15.01 WITH HARBOUR FOR FWH...
ECHO.
ECHO Wait a moment please...

REM SET hdir=e:\fw\harbour
REM SET hdirc=%hdir%\bin\win\mingw\harbour.exe
REM SET hlibs=%hdir%\lib\win\mingw
REM SET mingw=e:\fw\temp\mgw32
REM SET path=%mingw%\bin
REM SET fwh=e:\fw\fwharbour

SET hdir=c:\HBGCC151
SET hdirc=%hdir%\bin\win\mingw\harbour.exe
SET hlibs=%hdir%\lib\win\mingw
SET mingw=c:\mingw
SET path=%mingw%\bin
SET fwh=C:\FwH1905

REM // Generando el .c
REM TUTOR04.PRG, es el MENU PRINCIPAL, debe venir primero.
%hdirc% TUTOR04 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3  > comp.log 2>  warnings.log
%hdirc% TUTOR01 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log
%hdirc% TUTOR02 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log
%hdirc% TUTOR03 /m /n /i%fwh%\include;%hdir%\include /w /p %2 %3 >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO COMPILEERROR

REM // Generando el .o
%mingw%\bin\gcc -c -w TUTOR04.c -oTUTOR04.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
%mingw%\bin\gcc -c -w TUTOR01.c -oTUTOR01.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
%mingw%\bin\gcc -c -w TUTOR02.c -oTUTOR02.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log
%mingw%\bin\gcc -c -w TUTOR03.c -oTUTOR03.o -I%hdir%\include -I%mingw%\include >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO COMPILEERROR

REM // EVITAR PROBLEMAS EN EL DIALOGO CON BITMAPS DE BORLAND.
IF EXIST tutor04.rc %mingw%\bin\windres -D__FLAT__ -DDIALOG=DIALOGEX -itutor04.rc -o_tutor04.o --preprocessor "gcc -E -xc-header -include windows.h" >> comp.log 2>> warnings.log

REM // generando el executable sin .rc
IF NOT EXIST TUTOR04.rc %mingw%\bin\gcc -oTUTOR04.exe TUTOR04.o -Wall -s -mwindows -L%mingw%\lib -L%hlibs% -L%fwh%\lib -Wl,--enable-stdcall-fixup -Wl,--start-group -lfivehg -lfivehgc -llibmysql32 -lgtgui -luser32 -lshell32 -lwinspool -lkernel32 -lcomctl32 -lcomdlg32 -lgdi32 -lgdiplus -lole32 -loleaut32 -lpsapi -loledlg -lmfcuia32 -lmsimg32 -lwin32k -lstdc++ -lversion -luuid -lwinmm -lvfw32 -lwsock32 -lshell32 -lmpr -lws2_32 -liphlpapi -luxtheme -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbdebug -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -lhbziparc -lminizip -lhbmzip -lhbziparc -lpng -Wl,--end-group >> comp.log 2>> warnings.log

REM // generando el executable con .rc
IF EXIST     TUTOR04.rc %mingw%\bin\gcc -oTUTOR04.exe TUTOR04.o _TUTOR04.o -Wall -s -mwindows -L%mingw%\lib -L%hlibs% -L%fwh%\lib -Wl,--enable-stdcall-fixup -Wl,--start-group -lfivehg -lfivehgc -llibmysql32 -lgtgui -luser32 -lshell32 -lwinspool -lkernel32 -lcomctl32 -lcomdlg32 -lgdi32 -lgdiplus -lole32 -loleaut32 -lpsapi -lmsimg32 -lwin32k -loledlg -lstdc++ -lmfcuia32 -lversion -luuid -lwinmm -lvfw32 -lwsock32 -lshell32 -lws2_32 -liphlpapi -lmpr -luxtheme -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbdebug -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -lhbziparc -lminizip -lhbmzip -lhbziparc -lpng -Wl,--end-group >> comp.log 2>> warnings.log

IF ERRORLEVEL 1 GOTO LINKERROR

ECHO.
ECHO.
ECHO * Application successfully built

IF EXIST TUTOR04.exe TUTOR04.exe

GOTO EXIT

ECHO

:RESOURCESERROR
ECHO * Resources errors *
GOTO EXIT

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

:LINKERROR
ECHO * Link errors *
GOTO EXIT

:SINTAX
ECHO                         ERROR:
ECHO                         COMPILER ERROR(MingW).
GOTO EXIT

:NOEXIST
ECHO The specified PRG does not exist

:EXIT

REM FIN / END             -kapiabafwh@gmail.com-
Gracias, tks.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Tue May 27, 2025 01:46 PM

Can you confirm that MinGW 15.1.0 builds are all working fine, please? I mean 32/64 bit with Harbour/xHarbour.

Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Tue May 27, 2025 05:28 PM

Good afternoon Enrico. I am finishing a system that I have to deliver, and as soon as possible, I will return to this subject. I do not use 64-bit Windows and I do not have a 64-bit FWH. The tests were done with FWH/MINGW for 32-bit FWH for HARBOUR.

I do not have XHARBOUR for MINGW yet. Later, you would be so kind as to make XHARBOUR for MINGW available to me, although I have not seen any example of MINGW for XHARBOUR.

Buenas tardes Enrico. Estoy terminando un sistema que tengo que entregar, y en cuanto pueda volveré sobre este tema. No uso Windows de 64 bits y no tengo FWH de 64 bits. Se realizaron pruebas con FWH/MINGW para FWH de 32 bits para HARBOUR.

Todavía no tengo XHARBOUR para MINGW. Entonces sería tan amable de hacer que XHARBOUR esté disponible para MINGW, aunque no he visto ningún ejemplo de MINGW para XHARBOUR.

Estoy esperando que el Maestro Navarro me proporcione un COMP.BAT/COMP.LNK o GO.BAT/PROJ.MAK para XHARBOUR. Creo que está un poco ocupado. Esperemos a que aclare su mente y dirija su atención a este tema, ¿de acuerdo?

Gracias, tks.

Regards, saludos.

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Tue May 27, 2025 06:22 PM
xHarbour for MinGW is available here since two weeks:

https://github.com/FiveTechSoft/harbour_and_xharbour_builds

And for xHarbour you can use the same batch you are using for Harbour, as xHarbour has the same Harbour syntax.
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Sun Jun 01, 2025 02:08 PM
Buenos días, Enrico. Volviendo a MINGW GCC 15.1, les comparto una pequeña DEMO para que vean que compilar con XHARBOUR y BCC funciona perfectamente, pero con MINGW GCC y HARBOUR no.
Para compilar con xHarbour y BCC: CX.BAT y CX.LNK
Para compilar con Harbour y GCC: PROJ.BAT, PROJ.HBP y PROJRES.HBP -> Para incluir recursos de Borland.

Good morning Enrico. Returning to MINGW GCC 15.1, I am making available a small DEMO, so you can see that compiling with XHARBOUR and BCC, IT WORKS PERFECTLY and with MINGW GCC and HARBOUR IT DOES NOT WORK.
To compile with xHarbour AND BCC: CX.BAT and CX.LNK
To compile with Harbour AND GCC: PROJ.BAT and PROJ.HBP and PROJRES.HBP -> To include Borland resources.

P.S.: With MINGW GCC and HARBOUR, it compiles perfectly, but it doesn't send the email like when I compile with XHARBOUR, understand?

Full download of the small DEMO:

https://mega.nz/file/MJs23TyL#wMrmnMoZ6bKI98N2FKHv_HPv1mT3oONF255PrAIUvRA

Gracias, tks.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Sun Jun 01, 2025 03:32 PM

51 files! I need only one little PRG to reproduce the problem here. Otherwise I cannot help you, sorry.

Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Sun Jun 01, 2025 03:40 PM
Enrico Maria Giordano wrote: 51 files! I need only one little PRG to reproduce the problem here. Otherwise I cannot help you, sorry.
Enrico, no te preocupes, según las pruebas que he realizado, no es posible migrar ningún proyecto a este compilador. Continuaré con XHARBOUR y BCC77.
Otro ejemplo:
Usando SENDMAIL.PRG con HARBOUR y MINGW GCC, funciona perfectamente. Ahora bien, si uso una .DLL de terceros llamada ACBRMAIL.DLL, el remitente se bloquea y no permite cargar la .DLL.

Enrico, don't worry, from the tests I've done, it's not possible to migrate any project to this compiler. I'll continue with XHARBOUR and BCC77.
Another example:
Using SENDMAIL.PRG with HARBOUR and MINGW GCC, it works perfectly. Now, if I use a third-party .DLL named: ACBRMAIL.DLL, it freezes the sender, it doesn't accept "loading" the .DLL.

Full download:

https://mega.nz/file/NMt0XAZB#voBYMOhqByA-xhC_AHno16V4pNkLrZssfSxN6CK2Fe4

Gracias, tks.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Sun Jun 01, 2025 03:45 PM

As you wish. Someone else here that is willing to test Harbour and xHarbour builds for MinGW, please?

Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Sun Jun 01, 2025 03:47 PM

Enrico, note: in the first project I sent, you only need to look at RMAILAMB.PRG, nothing else.

Enrico, nota: en el primer proyecto que te envié, solo necesitas mirar RMAILAMB.PRG, nada más.

Gracias, tks.

Regards, saludos.

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Harbour and xHarbour para MingW GCC1501
Posted: Sun Jun 01, 2025 03:49 PM

Too big, sorry. You have to reduce it to the minimum possible yet showing the problem.