See changelog 2001-08-17 22:15 GMT -3

This commit is contained in:
Luiz Rafael Culik
2001-08-18 01:07:32 +00:00
parent ce8480f2a8
commit 371bd1ebe4
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2001-08-17 22:15 GMT -3 Luiz Rafael Culik<culik@sl.conex.net>
*source/compiler/gencobj.c
*added conditional for _MSC_VER when checking if harbour -o is used
2001-08-17 18:10 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* doc/en/hb_set.txt

View File

@@ -171,7 +171,12 @@ void hb_compGenCObj( PHB_FNAME pFileName )
#endif
hb_fsFNameMerge( pszTemp, pOut );
#if defined(_MSC_VER)
strcat( szOutPath, "-Fo" );
#elif
strcat( szOutPath, "-o" );
#endif
strcat( szOutPath, pszTemp );
hb_xfree( pOut );