Hi Antonio,
I need to rebuild FivehC32 (I miss some functions), do you have any makefile?
Regards,
Roberto Parisi
Rebuild FiveHC32
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: Rebuild FiveHC32
Roberto,
Are you using Borland, Microsoft or GNU ?
Are you using Borland, Microsoft or GNU ?
-
- Posts: 116
- Joined: Thu Oct 13, 2005 5:14 pm
- Location: Italy
Re: Rebuild FiveHC32
I'm using MSVC.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: Rebuild FiveHC32
Roberto,
Our FWH make file is quite complex. Also keep in mind that not all the C files are provided.
In case that you want to compile and store a C file in the lib then you can do:
echo -c -D__HARBOUR__ -D__FLAT__ $(LEGACY) -I$(HDIR)\include -I.\source\internal\include > tmp
echo -I"$(VCDIR)"\include -I.\include -I"$(SDKDIR)"\include /Gs20000 >> tmp
if exist "$(VCDIR)"\bin\cl.exe "$(VCDIR)"\bin\cl @tmp -Foobjhc32\$& $<
if exist "$(VCDIR)"\bin\lib.exe "$(VCDIR)"\bin\Lib lib\Fivehc32.lib /OUT:lib\Fivehc32.lib objhc32\$&.obj
Our FWH make file is quite complex. Also keep in mind that not all the C files are provided.
In case that you want to compile and store a C file in the lib then you can do:
echo -c -D__HARBOUR__ -D__FLAT__ $(LEGACY) -I$(HDIR)\include -I.\source\internal\include > tmp
echo -I"$(VCDIR)"\include -I.\include -I"$(SDKDIR)"\include /Gs20000 >> tmp
if exist "$(VCDIR)"\bin\cl.exe "$(VCDIR)"\bin\cl @tmp -Foobjhc32\$& $<
if exist "$(VCDIR)"\bin\lib.exe "$(VCDIR)"\bin\Lib lib\Fivehc32.lib /OUT:lib\Fivehc32.lib objhc32\$&.obj
-
- Posts: 116
- Joined: Thu Oct 13, 2005 5:14 pm
- Location: Italy
Re: Rebuild FiveHC32
Ok, I rebuilt correctly (almost all files) FWH32 and FWHC32.
Thx,
Roberto Parisi
Thx,
Roberto Parisi