Browse Source

+ give more information on some new defines

carl 22 years ago
parent
commit
7e08e91516
1 changed files with 9 additions and 2 deletions
  1. 9 2
      compiler/pp.pas

+ 9 - 2
compiler/pp.pas

@@ -32,7 +32,6 @@ program pp;
   SPARC               generate a compiler for SPARC
   SPARC               generate a compiler for SPARC
   POWERPC             generate a compiler for the PowerPC
   POWERPC             generate a compiler for the PowerPC
   VIS                 generate a compile for the VIS  
   VIS                 generate a compile for the VIS  
-  USEOVERLAY          compiles a TP version which uses overlays
   DEBUG               version with debug code is generated
   DEBUG               version with debug code is generated
   EXTDEBUG            some extra debug code is executed
   EXTDEBUG            some extra debug code is executed
   SUPPORT_MMX         only i386: releases the compiler switch
   SUPPORT_MMX         only i386: releases the compiler switch
@@ -47,6 +46,11 @@ program pp;
   TEST_GENERIC        Test Generic version of code generator
   TEST_GENERIC        Test Generic version of code generator
                       (uses generic RTL calls)
                       (uses generic RTL calls)
   -----------------------------------------------------------------
   -----------------------------------------------------------------
+  cpuflags            The target processor has status flags (on by default)
+  cpufpemu            The target compiler will also support emitting software
+                       floating point operations
+  cpu64bit            The target is a 64-bit processor           
+  -----------------------------------------------------------------
 
 
   Required switches for a i386 compiler be compiled by Free Pascal Compiler:
   Required switches for a i386 compiler be compiled by Free Pascal Compiler:
   GDB;I386
   GDB;I386
@@ -186,7 +190,10 @@ begin
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.20  2003-02-02 19:25:54  carl
+  Revision 1.21  2003-02-15 22:25:50  carl
+   + give more information on some new defines
+
+  Revision 1.20  2003/02/02 19:25:54  carl
     * Several bugfixes for m68k target (register alloc., opcode emission)
     * Several bugfixes for m68k target (register alloc., opcode emission)
     + VIS target
     + VIS target
     + Generic add more complete (still not verified)
     + Generic add more complete (still not verified)