Search found 35 matches: mylib

Return to advanced search

Re: FWH: All functions, classes, methods with source code

Dear Marc,

tlib.exe mylib.lib + myprg1.obj myprg2.obj ...

in case you want to replace the OBJs inside it:

tlib.exe mylib.lib -+ myprg1.obj myprg2.obj ...
by Antonio Linares
Wed Sep 14, 2022 5:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: All functions, classes, methods with source code
Replies: 15
Views: 1579

Re: Limitation while adding PRG to mylib.lib (RESOLVED)

Hi Navarro,

Thanks a lot.

Yes by changing the flag from /P64 to /P128....all module prgs have been compiled...

All good to go..

Thnx, Regards..
by RiazKhan
Sat Aug 07, 2021 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Re: Limitation while adding PRG to mylib.lib (RESOLVED)
Replies: 2
Views: 386

Re: Limitation while adding PRG to mylib.lib

Hi all, D:\FWH\Bcc\bin\tlib MYLIB.LIB -+ obj\W_5AF2 /P64 TLIB 7.0 Copyright (c) 1987-2019 Embarcadero Technologies, Inc. Warning: 'W_5AF2' not found in library I have been using this test.mak since the start of my 32 bit applications. ...
by cnavarro
Sat Aug 07, 2021 10:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Re: Limitation while adding PRG to mylib.lib (RESOLVED)
Replies: 2
Views: 386

Re: Limitation while adding PRG to mylib.lib (RESOLVED)

Hi all, Has anyone experience where one is unable to add more PRG's to test.mak and added to mylib.lib before compiling. Is there any limitaion on the size of mylib.lib or the number of prgs that one can add.... Once I add a new prg to my mak file is recveive this msg ...
by RiazKhan
Sat Aug 07, 2021 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Re: Limitation while adding PRG to mylib.lib (RESOLVED)
Replies: 2
Views: 386

Re: Funciones propias en una lib

... @echo offREM -REM by Thefull for Front-End Release 0.5REM -IF NOT EXIST .\obj MD .\objIF NOT EXIST .\lib MD .\lib:BUILD   C:\BCC74\BIN\MAKE  -m -fmylib.mak > make.log   if errorlevel 1 goto BUILD_ERR:BUILD_OK   rem Front-End send path + exe filename   if exist %2.exe %2.exe    goto EXIT:BUILD_ERR  ...
by jvtecheto
Thu Apr 30, 2020 2:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones propias en una lib (Solucionado)
Replies: 48
Views: 9818

Re: mod harbour projects

... Many thanks. How do I start? Is there a make file. Can you show us how to start a simple project with eg 3 prg files. Antonio Linares 09:04 Uhr mylib.prg #include "file1.prg" #include "file2.prg" #include "file3.prg" then you compile mylib.prg using harbour -gh ...
by Otto
Fri Sep 13, 2019 8:05 am
 
Forum: mod_harbour
Topic: mod harbour projects
Replies: 2
Views: 624

Re: Funciones propias en una lib

... @echo offREM -REM by Thefull for Front-End Release 0.5REM -IF NOT EXIST .\obj MD .\objIF NOT EXIST .\lib MD .\lib:BUILD   C:\BCC74\BIN\MAKE  -m -fmylib.mak > make.log   if errorlevel 1 goto BUILD_ERR:BUILD_OK   rem Front-End send path + exe filename   if exist %2.exe %2.exe    goto EXIT:BUILD_ERR  ...
by Compuin
Wed Jun 19, 2019 8:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones propias en una lib (Solucionado)
Replies: 48
Views: 9818

Re: Ayuda Pasando de xHarbour a Harbour32

No es posible crear la lib? Prefiero manejarla de esa manera para no mezclar prg Claro, sencillo, una vez que tengas el obj tlib mylib.lib -+ module.obj // El - no deberías ponerlo la primera vez, solo si vas a seguir modificando el modulo y modificando la libreria Claro pero me refiero ...
by Compuin
Wed Oct 24, 2018 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Pasando de xHarbour a Harbour32
Replies: 18
Views: 2594

Re: Ayuda Pasando de xHarbour a Harbour32 (SOLUCIONADO)

No es posible crear la lib? Prefiero manejarla de esa manera para no mezclar prg Claro, sencillo, una vez que tengas el obj tlib mylib.lib -+ module.obj // El - no deberías ponerlo la primera vez, solo si vas a seguir modificando el modulo y modificando la libreria Claro pero me refiero ...
by Compuin
Wed Oct 24, 2018 12:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Pasando de xHarbour a Harbour32
Replies: 18
Views: 2594

Re: Ayuda Pasando de xHarbour a Harbour32

Compuin wrote:No es posible crear la lib?

Prefiero manejarla de esa manera para no mezclar prg


Claro, sencillo, una vez que tengas el obj
tlib mylib.lib -+ module.obj
// El - no deberías ponerlo la primera vez, solo si vas a seguir modificando el modulo y modificando la libreria
by cnavarro
Wed Oct 24, 2018 11:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Pasando de xHarbour a Harbour32
Replies: 18
Views: 2594

Re: Converting my application from 32-bit to 64-bit

Antonio Linares wrote:Richard,

same as way as we do with tlib.exe in 32 bits:

tlib64 mylib.a + module.obj


Antonio,
I see. Thanks a lot.
by richard-service
Fri Nov 24, 2017 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting my application from 32-bit to 64-bit
Replies: 7
Views: 1310

Re: Converting my application from 32-bit to 64-bit

Richard,

same as way as we do with tlib.exe in 32 bits:

tlib64 mylib.a + module.obj
by Antonio Linares
Fri Nov 24, 2017 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting my application from 32-bit to 64-bit
Replies: 7
Views: 1310

Re: Funciones propias en una lib

Ya no hay ningún error :-)

Ahora debe haberse creado la librería mylib.lib

Ha mostrado dos avisos (warnings) que pueden ignorarse
by Antonio Linares
Thu Jan 19, 2017 5:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones propias en una lib (Solucionado)
Replies: 48
Views: 9818

Re: Funciones propias en una lib

Ahora este C:\SGE>make -mylib.mak MAKE Version 5.41 Copyright (c) 1987, 2014 Embarcadero Technologies, Inc. c:\harbour\bin\harbour .\prg\test.prg /N /W /es2 /Oobj\ /I.\include;c:\harbour\include;c:\FWH\include > comp.log c:\bcc7\bin\bcc32 ...
by Compuin
Thu Jan 19, 2017 4:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones propias en una lib (Solucionado)
Replies: 48
Views: 9818

Re: Funciones propias en una lib

Gracias maestro

Ahora arroja este error

C:\SGE>make -fmylib.mak
MAKE Version 5.41 Copyright (c) 1987, 2014 Embarcadero Technologies, Inc.
\bin\harbour .\prg\mainwin.prg /N /W /es2 /Oobjh\ /I.\include;\include >
comp.log
Fatal: Unable to execute command: \bin\harbour
C:\SGE>mylib
by Compuin
Tue Jan 17, 2017 8:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones propias en una lib (Solucionado)
Replies: 48
Views: 9818
Next

Return to advanced search