Error al compilar con HMG3.6
Moderator: Rathinagiri
Re: Error al compilar con HMG3.6
What display MsgDebug ( cNM1, cNM2) ?
- serge_girard
- Posts: 3342
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: Error al compilar con HMG3.6
Hi Edward,
The same...
The same...
- Attachments
-
- f1.png (5.62 KiB) Viewed 1561 times
There's nothing you can do that can't be done...
Re: Error al compilar con HMG3.6
Can you prepare a sample of running code and sample SQL database? You've written before that gives the correct results. Show you in the console window or something else, e.g. in a file?
Code: Select all
? cNM1- mjaviergutierrez
- Posts: 156
- Joined: Fri Nov 30, 2012 7:51 pm
- DBs Used: DBF
- Location: San Lorenzo, Santa Fe, Argentina
Re: Error al compilar con HMG3.6
Hola !
edk dice : For version 8.0, the file can be found in the folder: C:\Program Files\MySQL\MySQL Server 8.0\lib\libmysql.dll
Pero me dá este error ....
edk dice : For version 8.0, the file can be found in the folder: C:\Program Files\MySQL\MySQL Server 8.0\lib\libmysql.dll
Pero me dá este error ....
- Attachments
-
- Captura de pantalla 2024-12-21 121426.png (8.63 KiB) Viewed 1545 times
...
- serge_girard
- Posts: 3342
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: Error al compilar con HMG3.6
Edward,
I get this error :
I missed something...?
I get this error :
Code: Select all
P:/hmg.3.6/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lssleay32: No such file or directory
P:/hmg.3.6/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -llibeay32: No such file or directory
I missed something...?
There's nothing you can do that can't be done...
Re: Error al compilar con HMG3.6
Serge, note what I wrote about having to modify the file p:\hmg.3.6\harbour64\contrib\hbssl.hbc
You cannot use the 32 bit libeay32 and ssleay32 libraries. In your .hbp project file you need to make changes to the use of 64 bit libraries to
or instead of these three definitions you just write one
You cannot use the 32 bit libeay32 and ssleay32 libraries. In your .hbp project file you need to make changes to the use of 64 bit libraries to
Code: Select all
libs=hbssl
libs=libssl-3-x64
libs=libcrypto-3-x64Code: Select all
hbcs=hbssl.hbc- serge_girard
- Posts: 3342
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Contact:
Re: Error al compilar con HMG3.6
Thanks! Forgot about that...!
There's nothing you can do that can't be done...