neuer User
Posted: Thu Sep 05, 2019 5:06 pm
hi,
mein Name ist Jimmy, Baujahr 1956 in Shanghai / China.
mit xBase hab ich angefangen auf einem Apple ][ und dBase ][ unter CP/M
über dBase III, Cl*pper, VO bis ich bei Xbase++ gelandet https://www.xbaseforum.de
in der letzten Zeit hab ich mich mit dem Thema 64 Bit beschäftigt und da speziell mit PostgreSQL.
---
ich habe liblibpq.a und Libhbpgsql.a die 32 Bit sind.
ich benötige die 64 Bit Versionen liblibpq-64.a / Libhbpgsql-64.a
wenn ich das richtig verstehe besteht hbpgsql ausdas File postgres.c ist das
wie mache ich das mit MING64 für 64 Bit
---
hm ... kein Attachment möglich
mein Name ist Jimmy, Baujahr 1956 in Shanghai / China.
mit xBase hab ich angefangen auf einem Apple ][ und dBase ][ unter CP/M
über dBase III, Cl*pper, VO bis ich bei Xbase++ gelandet https://www.xbaseforum.de
in der letzten Zeit hab ich mich mit dem Thema 64 Bit beschäftigt und da speziell mit PostgreSQL.
---
ich habe liblibpq.a und Libhbpgsql.a die 32 Bit sind.
ich benötige die 64 Bit Versionen liblibpq-64.a / Libhbpgsql-64.a
wenn ich das richtig verstehe besteht hbpgsql aus
Code: Select all
postgres.c
rddcopy.c
tpostgre.prg
nun habe ich ein MakeLib.bat was aber mit BCC arbeitet also 32 Bit.PostgreSQL RDBMS low level (client api) interface code.
wie mache ich das mit MING64 für 64 Bit
---
hm ... kein Attachment möglich
Code: Select all
@echo off
rem Builds Harbour library hbpgsql.lib and converts original POstgreSQL libpq.lib (COFF) to OMF format (for Borland)
set PQ_VER=9.5
:OPT
call ..\..\batch\makelibopt.bat hbpgsql h %1 %2 %3 %4 %5 %6 %7 %8 %9
if %MV_EXIT%==Y goto END
if %MV_DODONLY%==Y goto CLEANUP
if %MV_USEXHRB%==N goto BUILD
echo hbpgsql.lib is not compatible with xHarbour.
goto END
:BUILD
if exist %MV_BUILD%\hbpgsql.lib del %MV_BUILD%\hbpgsql.lib
%MV_HRB%\bin\harbour.exe tpostgre.prg -n -w3 -es2 -gc0 -i%MV_HRB%\include
%MG_BCC%\bin\bcc32 -c -O2 -I%MG_HRB%\include -I.\%PQ_VER% postgres.c rddcopy.c tpostgre.c
%MG_BCC%\bin\tlib %MV_BUILD%\hbpgsql.lib +postgres.obj +rddcopy.obj +tpostgre.obj
if exist %MV_BUILD%\hbpgsql.bak del %MV_BUILD%\hbpgsql.bak
if exist .\%PQ_VER%\libpq.lib coffimplib .\%PQ_VER%\libpq.lib %MV_BUILD%\libpq.lib
if not exist .\%PQ_VER%\libpq.lib echo original libpq.lib (COFF) is MISSING: %MV_BUILD%\libpq.lib (OMF) is not created!
:CLEANUP
if exist postgres.obj del postgres.obj
if exist rddcopy.obj del rddcopy.obj
if exist tpostgre.obj del tpostgre.obj
if exist tpostgre.c del tpostgre.c
:END
call ..\..\batch\makelibend.bat