I am working fine with FWH+XHARBOUR+BCC55 past 3 years.
To day I wanted to install the above in a new system. And suprisingly
I am getting the following errors when I try to create an EXE.
- Code: Select all Expand view
ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ FiveWin for xHarbour 8.09 - Sep. 2008 xHarbour development power ³Ü
³ (c) FiveTech, 1993-2008 for Microsoft Windows 95/98/NT/2000/ME/XP/Vista ³Û
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙÛ
ÿ ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß
Compiling...
xHarbour Compiler build 1.1.0 (SimpLex) (Rev. 6195)
Copyright 1999-2008, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'test.prg' and generating preprocessed output to 'test.ppo'...
Lines 259, Functions/Procedures 6
Generating C source output to 'test.c'...
Done.
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
test.c:
Error E2209 c:\xharbour\include\hbvmpub.h 65: Unable to open include file 'assert.h'
Error E2209 c:\xharbour\include\hbdefs.h 58: Unable to open include file 'stdarg.h'
Error E2209 c:\xharbour\include\hbdefs.h 59: Unable to open include file 'stdio.h'
Error E2209 c:\xharbour\include\hbdefs.h 60: Unable to open include file 'stdlib.h'
Error E2209 c:\xharbour\include\hbdefs.h 61: Unable to open include file 'string.h'
Error E2209 c:\xharbour\include\hbsetup.h 65: Unable to open include file 'limits.h'
Error E2141 c:\xharbour\include\hbwince.h 165: Declaration syntax error
Error E2293 c:\xharbour\include\hbwince.h 166: ) expected
Error E2141 c:\xharbour\include\hbwince.h 167: Declaration syntax error
Error E2293 c:\xharbour\include\hbwince.h 168: ) expected
Error E2147 c:\xharbour\include\hbwince.h 169: 'wchar_t' cannot start a parameter declaration
Error E2147 c:\xharbour\include\hbwince.h 170: 'wchar_t' cannot start a parameter declaration
Error E2293 c:\xharbour\include\hbwince.h 171: ) expected
Error E2188 c:\xharbour\include\hbdefs.h 462: Expression syntax
Error E2257 c:\xharbour\include\hbdefs.h 484: , expected
Error E2139 c:\xharbour\include\hbvmpub.h 287: Declaration missing ;
Error E2141 c:\xharbour\include\hbapi.h 614: Declaration syntax error
Error E2451 test.c 63: Undefined symbol 'NULL'
Error E2141 test.c 63: Declaration syntax error
Error E2190 test.c 63: Unexpected }
Error E2190 test.c 63: Unexpected }
Error E2040 test.c 63: Declaration terminated incorrectly
Error E2190 test.c 63: Unexpected }
Error E2190 test.c 63: Unexpected }
Error E2040 test.c 63: Declaration terminated incorrectly
Error E2228 test.c 63: Too many error or warning messages
*** 26 errors in Compile ***
Borland Resource Compiler Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation. All rights reserved.
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
Fatal: Unable to open file 'C0W32.OBJ'
* There are errors
And my copy of AUTOEXEC.BAT file is :
- Code: Select all Expand view
@ ECHO OFF
SET Def=__HARBOUR__;HB_GUI;HB_FM_STATISTICS_OFF
SET HDIR=C:\XHARBOUR
SET BCDIR=C:\BCC55
SET LIB=C:\XHARBOUR\LIB;C:\FWH\LIB;C:\BCC55\LIB;C:\CLIP53\LIB
SET INCLUDE=C:\XHARBOUR\INCLUDE;C:\FWH\INCLUDE;C:\BCC55\INCLUDE;C:\CLIP53\INCLUDE
SET PATH=C:\WINDOWS\SYSTEM32;C:\XHARBOUR\BIN;C:\BCC55\BIN;C:\CLIP53\BIN;C:\UTILITYS
CLS
These are my environment settings:
- Code: Select all Expand view
ALLUSERSPROFILE=C:\Documents and Settings\All Users
APPDATA=C:\Documents and Settings\Administrator\Application Data
BCDIR=c:\bcc55
CLIENTNAME=Console
CommonProgramFiles=C:\Program Files\Common Files
COMPUTERNAME=AKSHARA
ComSpec=C:\WINDOWS\system32\cmd.exe
Def=__HARBOUR__;HB_GUI;HB_FM_STATISTICS_OFF
FP_NO_HOST_CHECK=NO
HDIR=c:\xharbour
HOMEDRIVE=C:
HOMEPATH=\Documents and Settings\Administrator
LOGONSERVER=\\AKSHARA
NUMBER_OF_PROCESSORS=1
OS=Windows_NT
Path=C:\WINDOWS\system32;C:\XHARBOUR\BIN;C:\BCC55\BIN;C:\CLIP53\BIN;C:\UTILITYS
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
PROCESSOR_ARCHITECTURE=x86
PROCESSOR_IDENTIFIER=x86 Family 6 Model 22 Stepping 1, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=1601
ProgramFiles=C:\Program Files
PROMPT=$P$G
SESSIONNAME=Console
SystemDrive=C:
SystemRoot=C:\WINDOWS
TEMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
TMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
USERDOMAIN=AKSHARA
USERNAME=Administrator
USERPROFILE=C:\Documents and Settings\Administrator
windir=C:\WINDOWS
I have downloaded and installed Borland command line tools from the link provided
by Fivetechsoft.com and created "BCC32.CFG with the following lines :
-I"C:\BCC55\Include"
-L"C:\BCC55\Lib"
And also created ILINK32.CFG with :
-L"C:\BCC55\Lib"
I am using FWH 8.09.
Can anybody correct my mistake.
- Ramesh Babu P