浏览代码

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

git-svn-id: trunk@36695 -
svenbarth 8 年之前
父节点
当前提交
c66daeb69f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      rtl/linux/system.pp

+ 2 - 2
rtl/linux/system.pp

@@ -33,13 +33,13 @@ Unit System;
 
 {$I sysunixh.inc}
 
-{$if defined(VER3_0) and defined(CPUXXX)}
+{$if defined(VER3_0) and defined(CPUX86_64)}
 {$define FPC_BOOTSTRAP_INDIRECT_ENTRY}
 const
   { 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 }
   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' ;