Browse Source

* Undef FPC_HAS_TYPE_EXTENDED for x86_64-android.

git-svn-id: trunk@39961 -
yury 6 years ago
parent
commit
692c287c3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/options.pas

+ 1 - 1
compiler/options.pas

@@ -4296,7 +4296,7 @@ begin
 {$ifdef x86_64}
 {$ifdef x86_64}
 {$ifndef FPC_SUPPORT_X87_TYPES_ON_WIN64}
 {$ifndef FPC_SUPPORT_X87_TYPES_ON_WIN64}
       { normally, win64 doesn't support the legacy fpu }
       { normally, win64 doesn't support the legacy fpu }
-      if target_info.system=system_x86_64_win64 then
+      if target_info.system in [system_x86_64_win64,system_x86_64_android] then
         undef_system_macro('FPC_HAS_TYPE_EXTENDED')
         undef_system_macro('FPC_HAS_TYPE_EXTENDED')
       else
       else
 {$endif FPC_SUPPORT_X87_TYPES_ON_WIN64}
 {$endif FPC_SUPPORT_X87_TYPES_ON_WIN64}