Search found 382 matches: comp

Return to advanced search

Re: Editsource() Problem

... 4.- in windows console hbmk2 testsqla.hbp -comp=bcc ( -comp=bcc this not neccesary if you not have other path of compiler defined in your path ) hbmk2 testsqla.hbp Try and tell me
by cnavarro
Tue Jun 09, 2020 10:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HBMK2 Problem linking
Replies: 49
Views: 6963

Re: Editsource() Problem

ok, sure! I faced this issue when I first tried to compile with hbmk2. I guess you can add to your command line: C:\FWH\samples>\harbour\bin\hbmk2 test.hbp -comp bcc Or you can try this .bat (adjusting the directories): set oldpath=C:\PathExample\set ...
by ricbarraes
Mon Jun 08, 2020 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HBMK2 Problem linking
Replies: 49
Views: 6963

Re: Harbour 64 bits construido con BCC 64

... %1 /n /i%fwh%\include;%hdir%\include /w /p %2 %3 %hdir%\bin\harbour %1 /n /i%fwh%\include;%hdir%\include /w /p /d__64__ %2 %3 > comp.log 2> warnings.log
by MOISES
Thu May 07, 2020 10:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Harbour 64 bits construido con BCC 64
Replies: 13
Views: 2385

Re: buildH.BAT more than 1 PRG ?

Jimmy,

You can also use Harbour's hbmk2 to build FWH apps with multiple PRGs:

test.hbp
Code: Select all  Expand view
tutor01.prg

-I..\include
-L..\lib
-lfiveh
-lfivehc

xhb.hbc
hbwin.hbc
hbmzip.hbc
hbziparc.hbc


hbmk2.bat
Code: Select all  Expand view
set path=c:\bcc7\bin
c:\harbour\bin\hbmk2 test


From the cmd do:
hbmk2 test -comp=bcc
by Antonio Linares
Sat Dec 21, 2019 7:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: buildH.BAT more than 1 PRG ?
Replies: 4
Views: 982

Re: Construcción de LIB importadas 32 y 64 para los comp. de C

Construccion de librerias de importacion BCC32 ImpLib LibMySQL.lib LibMySQL.dll  BCC64 mkexp libmysql.a libmysql.dll  MSVC32 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"lib /def:LibMySQL.def /machine:x86 /out:LibMySQL.lib  MSVC64 call &q...
by xmanuel
Wed Dec 18, 2019 9:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Construcción de LIB importadas 32 y 64 para los comp. de C
Replies: 2
Views: 834

Re: Construcción de LIB importadas 32 y 64 para los comp. de C

Para Borland 64 MKEXP.EXE, the 64-bit Windows Import Library Tool for C++ Go Up to Command-Line Utilities Index MKEXP.EXE is the 64-bit Windows counterpart of IMPLIB.EXE, the Import Library Tool for Win32. However, MKEXP does not support all the same options supported by IMPLIB. MKEXP produces GNU-s...
by Compuin
Tue Dec 17, 2019 6:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Construcción de LIB importadas 32 y 64 para los comp. de C
Replies: 2
Views: 834

Construcción de LIB importadas 32 y 64 para los comp. de C

Abro este hilo porque creo que sería bueno que los que lo tengáis esos procedimientos los compartáis con todos.
Para 32 bit y 64 de los principales compiladores de C:

Bcc32 y Bcc54
Msvc32 y Msvc64
MinGW32 y MinGW64
y otros

:D
by xmanuel
Mon Dec 16, 2019 2:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Construcción de LIB importadas 32 y 64 para los comp. de C
Replies: 2
Views: 834

Dolphin con Visual Studio 2019

Hola Foro Cual es el path o ruta que debo configurar a mi archivo setenv64.bat para poder crear la .lib de Tdolphin ?? @CALL CLEANENV.BAT @SET PRG_COMPILER=HARBOUR @SET PRG_COMP_PATH=c:\harbour @SET PRG_COMP_BIN_PATH=%PRG_COMP_PATH%\bin @SET PRG_COMP_LIB_PATH=%PRG_COMP_PATH%\lib\win\msvc64 @SET PRG_...
by Compuin
Thu Dec 05, 2019 7:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dolphin con Visual Studio 2019
Replies: 0
Views: 273

Re: Imprimir pdf sin intervención del usuario

Con Harbour, tienes que enlazar las librerias hbhpdf.lib y libhpdf.lib #include "FiveWin.ch" #include "harupdf.ch" Function Main() Local oPdf,Page,oImage,oFont,Font1,Font2,Font3 oPdf:=HPDF_New() HPDF_SetCompressionMode( oPdf, HPDF_COMP_ALL ) **HPDF_SetPassword( oPdf, 'jaime', 'al...
by jacgsoft
Wed Jul 31, 2019 9:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir pdf sin intervención del usuario
Replies: 9
Views: 2501

Re: Error compilando con visualstudio 2019

... fwh=%FWDIR% @set hdir=%HBDIR% @set hdirl=%hdir%\lib @cd %current_dir% %hdir%\bin\harbour %1 /n /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 cl.exe -TP -W3 -c /GS- /I%hdir%\include /GA %1.c :ENDCOMPILE ...
by Compuin
Wed Jun 19, 2019 7:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error compilando con visualstudio 2019 (SOLUCIONADO)
Replies: 9
Views: 1298

Re: Error compilando con visualstudio 2019

... fwh=%FWDIR% @set hdir=%HBDIR% @set hdirl=%hdir%\lib @cd %current_dir% %hdir%\bin\harbour %1 /n /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 cl.exe -TP -W3 -c /GS- /I%hdir%\include /GA %1.c :ENDCOMPILE ...
by cnavarro
Wed Jun 19, 2019 7:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error compilando con visualstudio 2019 (SOLUCIONADO)
Replies: 9
Views: 1298

Re: Adssetnull external error

Please, try to ask to comp.lang.xharbour newsgroup.

EMG
by Enrico Maria Giordano
Fri Jun 14, 2019 12:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adssetnull external error
Replies: 13
Views: 1969

Re: Ejemplo Buildh.bat compilar varios prgs.

... + c:\bcc72\lib\psdk\gdiplus.lib + c:\bcc72\lib\psdk\iphlpapi.lib + c:\bcc72\lib\psdk\shell32.lib,mi archivo.res  Que puedo crear un COMP.BAT y COMP.LNK Y Tambien funciona perfecto.
by karinha
Tue May 14, 2019 4:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo Buildh.bat compilar varios prgs.
Replies: 30
Views: 3767

Re: Ejemplo Buildh.bat compilar varios prgs.

Hola Karinha

Y entonces como serian las llamadas para generar el exe con los ficheros comp.bat y comp.lnk

Gracias por tu interes y ayuda

Saludos.

Jose.
by jvtecheto
Sat May 11, 2019 9:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo Buildh.bat compilar varios prgs.
Replies: 30
Views: 3767

Re: Ejemplo Buildh.bat compilar varios prgs.

COMP.LNK C:\bcc72\lib\c0w32.Obj               +WINORCAM.OBJ                         +FUNCOES.OBJ           ...
by karinha
Fri May 10, 2019 8:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo Buildh.bat compilar varios prgs.
Replies: 30
Views: 3767
PreviousNext

Return to advanced search