Search found 57 matches: fivehgc

Return to advanced search

Re: ejemplo archivo make para mingw32

karinha wrote:Algun ejemplo con .BAT y .LNK para FiveWin for xHarbour? No uso Harbour aún. Gracias, saludos.


FWH no incluye la librería para xHarbour y gcc,

pero puedes usar FWH\lib\fivehgc.lib pero tienes que construir fivehgx.lib, compilando todos los PRGs de FWH con xHarbour
by Antonio Linares
Tue Apr 20, 2021 5:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ejemplo archivo make para mingw32
Replies: 12
Views: 1396

Compilando con Harbour 3.2, Bcc7 y Hbmk2

... n\bcc\menu.obj .hbmk\win\bcc\frecuencia.obj .hbmk\win\bcc\pron_2.obj .hbmk\win\bcc\seeyou.obj .hbmk\win\bcc\mmovil.obj, menu.exe, nul, fivehg.lib fivehgc.lib gtgui.lib hbextern.lib hbdebug.lib hbvm.lib hbrtl.lib hblang.lib hbcpage.lib gtcgi .lib gtpca.lib gtstd.lib gtwin.lib gtwvt.lib gtgui.lib ...
by Armando Picon
Sat Jan 25, 2020 6:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilando con Harbour 3.2, Bcc7 y Hbmk2
Replies: 13
Views: 3223

Re: Reducing the EXEs sizes

DBFs for fivehgc.lib From Windows bash: nm fivehgc.lib > fivehgc.txt dbfs_c.prg #include "FiveWin.ch"extern DBFCDXfunction Main()   local aLines := HB_ATokens( MemoRead( "fivehgc.txt" ...
by Antonio Linares
Tue Feb 26, 2019 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2649

Reducing the EXEs sizes

... From bash we can run the nm utility: nm --defined-only fivehg.lib > defined.txt nm --extern-only fivehg.lib > extern.txt nm --defined-only fivehgc.lib > defined_c.txt nm --extern-only fivehgc.lib > extern_c.txt Now we are going to create 2 DBFs named files.dbf and symbols.dbf and ...
by Antonio Linares
Wed Feb 20, 2019 5:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2649

FWH 18.02 MinGW 7.2.0

Mr.Rao, error compiling with FWH 18.02 and MinGW 7.2.0 libraries: FiveHG.lib and FiveHGC.lib do not contain the class FWMariaDB eg: c:\devfw\fwh_1802\samples\buildg maria01 ┌────────────────────────────────────────────────────────────────────────────┐?FiveWin for ...
by vinhesoft
Mon Apr 16, 2018 7:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.02 MinGW 7.2.0
Replies: 4
Views: 851

Re: FiveHGC.lib - Undefined reference ot _Unwind_Resume

After updating Harbour with the nightly build and a day of walking in circles without getting anywhere seeking the solution to this problem, I finally figure out that MinGW GCC have 3 different "Exception handling" systems: SJLJ, DWARF, and SEH. Harbour nightly build was using SJLJ version...
by concentra
Fri Jun 09, 2017 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveHGC.lib - Undefined reference ot _Unwind_Resume
Replies: 2
Views: 608

Re: multiple definition error

... Compilable Sourceshello.prg  i want to try the hbide debug, but, with fivehg.lib and fivehgc.lib before of all Others libraries, Always start the fivewin debug. if there is not other way, is it possbile temporarily remove debug from ...
by marzio
Fri Feb 03, 2017 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: multiple definition error
Replies: 20
Views: 3777

Re: multiple definition error

... -lcomdlg32 -lshell32 -luuid -lole32 -loleaut32 -lmpr -lwinmm -lmapi32 -limm32 -lmsimg32 -lwininet -lhbpcre -lhbzlib c:/winclip/fwh1507/lib/FiveHGC.lib c:/winclip/fwh1507/lib/FiveHG.lib -Wl,--end-group -ohello.exe -LC:/Winclip/qtcontrib/lib/win/mingw c:/winclip/fwh1507/lib/FiveHGC.lib and ...
by Antonio Linares
Wed Feb 01, 2017 11:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: multiple definition error
Replies: 20
Views: 3777

Re: multiple definition error

Please change these lines in the hbmk2 file:

-lc:\winclip\fwh1507\lib\FiveHGC.lib
-lc:\winclip\fwh1507\lib\FiveHG.lib

into:

-Lc:\winclip\fwh1507\lib -lFiveHG
-Lc:\winclip\fwh1507\lib -lFiveHGC
by Antonio Linares
Wed Feb 01, 2017 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: multiple definition error
Replies: 20
Views: 3777

Re: multiple definition error

... Using C compiler: C:\Winclip\qtcontrib\comp\mingw\bin [43995.723] hbmk2[prj00001]: Warning: Non-portable parameter: '-lc:\winclip\fwh1507\lib\FiveHGC.lib' in C:\Winclip\prova\prj00001.hbp:26. Use '-Lc:\winclip\fwh1507\lib -lFiveHGC' option(s) instead. [43995.724] hbmk2[prj00001]: Warning: ...
by marzio
Tue Jan 24, 2017 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: multiple definition error
Replies: 20
Views: 3777

Re: multiple definition error

# hbmk2 Flags
#
-hbexe


# GT Requested
#
-gtwin
#-w
#-p
#-gtgui

-ic:\winclip\fwh1507\include

-lc:\winclip\fwh1507\lib\FiveHGC.lib
-lc:\winclip\fwh1507\lib\FiveHG.lib

# Compilable Sources
#
#
# .prg
#
hello.prg
by marzio
Tue Jan 24, 2017 10:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: multiple definition error
Replies: 20
Views: 3777

multiple definition error

... and Get System implementation which is clashing with Harbour's implementation. i have added 2 lib of fivewin 1507 -ld:\winclip\fwh1507\lib\FiveHGC.lib -ld:\winclip\fwh1507\lib\FiveHG.lib #include "FiveWin.ch" PROCEDURE Main() LOCAL oWnd DEFINE WINDOW oWnd FROM 0, 0 TO 30, 80 TITLE ...
by marzio
Tue Jan 24, 2017 9:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: multiple definition error
Replies: 20
Views: 3777

FiveHGC.lib - Undefined reference ot _Unwind_Resume

Hi, all. When linking my application, I get the following error: /fwh.2012.04/lib/fivehgc.lib(ACTX.o):ACTX.CPP:(.text+0xe08): undefined reference to `_Unwind_Resume' /fwh.2012.04/lib/fivehgc.lib(ACTX.o):ACTX.CPP:(.eh_frame+0x2b7): undefined reference to `__gxx_personality_v0' ...
by MarioCdeS
Tue Aug 30, 2016 7:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveHGC.lib - Undefined reference ot _Unwind_Resume
Replies: 2
Views: 608

FWH 15.03 with MimgW Error

... Lines 4275, Functions/Procedures 1 Generating C source output to 'C:\Users\manfred\AppData\Local\Temp\hbmk_s8oa26.d ir\adir.c'... Done. c:/fwh/lib/fivehgc.lib(RICHEDIT.o):RICHEDIT.C:(.text+0xb9): undefined reference to `IID_IRichEditOleCallback' collect2: ld returned 1 exit status hbmk2: Error: ...
by Gross
Tue Mar 24, 2015 4:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 15.03 with MimgW Error
Replies: 5
Views: 822
Next

Return to advanced search