Skip to content

Commit d31e6af

Browse files
committed
Added support for Delphi 10.4
1 parent c0cd159 commit d31e6af

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

FastMath/Neslib.FastMath.Internal.inc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ const
1313
_LIB_FASTMATH = 'libfastmath-android-64.a';
1414
_PREFIX = '_';
1515
{$ELSEIF Defined(ANDROID)}
16-
{$IF (RTLVersion >= 33)}
16+
{$IF (RTLVersion = 33)}
17+
{ Delphi 10.3 uses Thumb mode. }
1718
{ @exclude }
1819
_LIB_FASTMATH = 'libfastmath-android-32.a';
1920
{$ELSE}
20-
{ Delphi 10.2 and earlier use ARM mode (instead of Thumb). }
21+
{ Delphi 10.2 and earlier and Delphi 10.4 and later use ARM mode. }
2122
{ @exclude }
2223
_LIB_FASTMATH = 'libfastmath-android-arm.a';
2324
{$ENDIF}

0 commit comments

Comments
 (0)