Browse Source

* forgot to correctly enable bootstrapping from direct to indirect entry for x86_64-linux

git-svn-id: trunk@36695 -
svenbarth 8 years ago
parent
commit
c66daeb69f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rtl/linux/system.pp

+ 2 - 2
rtl/linux/system.pp

@@ -33,13 +33,13 @@ Unit System;
 
 
 {$I sysunixh.inc}
 {$I sysunixh.inc}
 
 
-{$if defined(VER3_0) and defined(CPUXXX)}
+{$if defined(VER3_0) and defined(CPUX86_64)}
 {$define FPC_BOOTSTRAP_INDIRECT_ENTRY}
 {$define FPC_BOOTSTRAP_INDIRECT_ENTRY}
 const
 const
   { this constant only exists during bootstrapping of the RTL with FPC 3.0.x,
   { this constant only exists during bootstrapping of the RTL with FPC 3.0.x,
     so that the whole condition doesn't need to be repeated in si_intf }
     so that the whole condition doesn't need to be repeated in si_intf }
   indirect_bootstrap = true;
   indirect_bootstrap = true;
-{$endif defined(VER3_0) and defined(CPUXXX)}
+{$endif defined(VER3_0) and defined(CPUX86_64)}
 
 
 
 
 function get_cmdline:Pchar; deprecated 'use paramstr' ;
 function get_cmdline:Pchar; deprecated 'use paramstr' ;