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 when compiling...
*********************************************************************
D:\FWH\Harbour\bin\harbour .\W_5AF2.PRG /N /W /Oobj\ /ID:\FWH\FWH\include;D:\FWH\Harbour\include >clip.log
D:\FWH\Bcc\bin\bcc32 -c -tWM -ID:\FWH\Harbour\include -oobj\W_5AF2 obj\W_5AF2.c
Embarcadero C++ 7.40 for Win32 Copyright (c) 1993-2018 Embarcadero Technologies,Inc.
obj\W_5AF2.c:
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
Warning: 'W_5AF2' not found in library
Warning: 'W_5AF2' not found in library
Warning: 'W_5AF2' not found in library
Warning: 'W_5AF2' not found in library
*********************************************************************
I have been using this test.mak since the start of my 32 bit applications. But as the application grows more prg's are added to the mak file...currently I am compiling 297 prgs. Unable to add 298++...
Any suggestion ....
Re: Limitation while adding PRG to mylib.lib (RESOLVED)
Re: Limitation while adding PRG to mylib.lib (RESOLVED)
Last edited by RiazKhan on Sat Aug 07, 2021 11:42 am, edited 1 time in total.
Re: Limitation while adding PRG to mylib.lib
RiazKhan wrote: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. But as the application grows more prg's are added to the mak file...currently I am compiling 297 prgs. Unable to add 298++...
Any suggestion ....
Hi, delete your lib and recreate it with all your modules using / P128
D:\FWH\Bcc\bin\tlib MYLIB.LIB -+ obj\W_5AF2 /P128
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
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..
Thanks a lot.
Yes by changing the flag from /P64 to /P128....all module prgs have been compiled...
All good to go..
Thnx, Regards..