2009-07-14 03:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbmk2/hbmk2.prg
    * Let's assume 32-bit / little-endian CPU platforms for 
      cross *nix builds, as the most probable case.
This commit is contained in:
Viktor Szakats
2009-07-14 01:08:19 +00:00
parent e029a6cb05
commit 693da6cee8
2 changed files with 9 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-07-14 03:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
* Let's assume 32-bit / little-endian CPU platforms for
cross *nix builds, as the most probable case.
2009-07-14 02:49 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
! Fixed to force empty extension for target executables

View File

@@ -5941,7 +5941,10 @@ STATIC PROCEDURE PlatformPRGFlags( hbmk, aOPTPRG )
ENDIF
OTHERWISE
/* NOTE: Users will have to manually #define fitting macros for
given platform + compiler settings. We could only guess. */
given platform + compiler settings. We could only guess.
Let's assume the most probable CPU platform (as of 2009). */
AAdd( aDef, "__LITTLE_ENDIAN__" )
AAdd( aDef, "__ARCH32BIT__" )
ENDCASE
/* Delete macros present in both lists */