2011-01-24 23:12 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbcomp.h
* harbour/src/compiler/cmdcheck.c
* harbour/src/compiler/hbmain.c
* harbour/src/compiler/hbusage.c
- removed some old unused declarations and code
* harbour/src/main/harbour.1
* updated
This commit is contained in:
@@ -16,6 +16,16 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-01-24 23:12 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/include/hbcomp.h
|
||||
* harbour/src/compiler/cmdcheck.c
|
||||
* harbour/src/compiler/hbmain.c
|
||||
* harbour/src/compiler/hbusage.c
|
||||
- removed some old unused declarations and code
|
||||
|
||||
* harbour/src/main/harbour.1
|
||||
* updated
|
||||
|
||||
2011-01-23 19:10 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
- harbour/contrib/hbunix/guids.c
|
||||
+ harbour/contrib/hbunix/uidgid.c
|
||||
|
||||
@@ -330,10 +330,6 @@ extern void hb_compStripFuncLines( PFUNCTION pFunc );
|
||||
/* output related functions defined in gen*.c */
|
||||
extern void hb_compGenCCode( HB_COMP_DECL, PHB_FNAME ); /* generates the C language output */
|
||||
extern void hb_compGenPortObj( HB_COMP_DECL, PHB_FNAME ); /* generates the portable objects */
|
||||
extern void hb_compGenILCode( HB_COMP_DECL, PHB_FNAME ); /* generates the .NET IL language output */
|
||||
extern void hb_compGenJava( HB_COMP_DECL, PHB_FNAME ); /* generates the Java language output */
|
||||
extern void hb_compGenObj32( HB_COMP_DECL, PHB_FNAME ); /* generates OBJ 32 bits */
|
||||
extern void hb_compGenCObj( HB_COMP_DECL, PHB_FNAME ); /* generates platform dependant object module */
|
||||
|
||||
extern void hb_compGenBufPortObj( HB_COMP_DECL, HB_BYTE ** pBufPtr, HB_SIZE * pnSize ); /* generates the portable objects to memory buffer */
|
||||
|
||||
|
||||
@@ -290,13 +290,6 @@ static void hb_compChkEnvironVar( HB_COMP_DECL, const char *szSwitch )
|
||||
}
|
||||
break;
|
||||
|
||||
#ifdef HB_GEN_OBJ32
|
||||
case 'w':
|
||||
case 'W':
|
||||
HB_COMP_PARAM->iLanguage = HB_LANG_OBJ32;
|
||||
break;
|
||||
#endif
|
||||
|
||||
default:
|
||||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'F', HB_COMP_ERR_UNSUPPORTED_LANG, NULL, NULL );
|
||||
break;
|
||||
|
||||
@@ -3761,12 +3761,6 @@ static void hb_compGenOutput( HB_COMP_DECL, int iLanguage )
|
||||
hb_compGenCCode( HB_COMP_PARAM, HB_COMP_PARAM->pFileName );
|
||||
break;
|
||||
|
||||
#ifdef HB_GEN_OBJ32
|
||||
case HB_LANG_OBJ32:
|
||||
hb_compGenObj32( HB_COMP_PARAM, HB_COMP_PARAM->pFileName );
|
||||
break;
|
||||
#endif
|
||||
|
||||
case HB_LANG_PORT_OBJ:
|
||||
hb_compGenPortObj( HB_COMP_PARAM, HB_COMP_PARAM->pFileName );
|
||||
break;
|
||||
@@ -3949,11 +3943,6 @@ static void hb_compGenIncluded( HB_COMP_DECL )
|
||||
case HB_LANG_C:
|
||||
FileName.szExtension = ".c";
|
||||
break;
|
||||
#ifdef HB_GEN_OBJ32
|
||||
case HB_LANG_OBJ32:
|
||||
FileName.szExtension = ".obj";
|
||||
break;
|
||||
#endif
|
||||
case HB_LANG_PORT_OBJ:
|
||||
case HB_LANG_PORT_OBJ_BUF:
|
||||
FileName.szExtension = ".hrb";
|
||||
|
||||
@@ -73,9 +73,6 @@ void hb_compPrintUsage( HB_COMP_DECL, const char * szSelf )
|
||||
"\n %cgc[<type>] output type: C source (.c) (default)",
|
||||
"\n <type>: 0=compact (default) 1=normal 2=verbose",
|
||||
"\n 3=generate real C code",
|
||||
#ifdef HB_GEN_OBJ32
|
||||
"\n %cgw output type: Windows/DOS OBJ32 (.obj)",
|
||||
#endif
|
||||
"\n %cgh output type: Harbour Portable Object (.hrb)",
|
||||
"\n %cgd[.<destext>] generate dependencies list into (.d) file",
|
||||
"\n %cge[<mode>] error output <mode>: 0=Clipper (default)",
|
||||
|
||||
@@ -30,14 +30,16 @@ output type: C source (.c) (default)
|
||||
<type>: 0=compact (default) 1=normal 2=verbose
|
||||
.IP
|
||||
3=generate real C code instead of PCODE
|
||||
.IP "\fB-go\fP" 10
|
||||
output type: Platform dependant object module
|
||||
.IP "\fB-gh\fP" 10
|
||||
output type: Harbour Portable Object (.hrb)
|
||||
.IP "\fB-gd[.<destext>]\fP" 10
|
||||
generate dependencies list into (.d) file
|
||||
.IP "\fB-ge[<mode>]\fP" 10
|
||||
error output <mode>: 0=Clipper (default) 1=IDE friendly
|
||||
.IP "\fB-i<path>\fP" 10
|
||||
#include file search path
|
||||
.IP "\fB-i[-|+]\fP" 10
|
||||
disable/enable support for INCLUDE envvar
|
||||
.IP "\fB-j[<file>]\fP" 10
|
||||
generate i18n gettex file (.pot)
|
||||
.IP "\fB-k\fP" 10
|
||||
@@ -52,6 +54,8 @@ no implicit starting procedure (default)
|
||||
<type>: 0=no implicit starting procedure
|
||||
.IP
|
||||
1=no starting procedure at all
|
||||
.IP
|
||||
2=add starting procedure if necessary
|
||||
.IP "\fB-o<path>\fP" 10
|
||||
object file drive and/or path
|
||||
.IP "\fB-p[<path>]\fP" 10
|
||||
|
||||
Reference in New Issue
Block a user