Browse Source

Also issue -mfpu option when calling GNU assembler for fpu_fpa family

git-svn-id: trunk@45788 -
pierre 5 years ago
parent
commit
53eca29309
1 changed files with 6 additions and 0 deletions
  1. 6 0
      compiler/arm/agarmgas.pas

+ 6 - 0
compiler/arm/agarmgas.pas

@@ -108,6 +108,12 @@ unit agarmgas;
         case current_settings.fputype of
         case current_settings.fputype of
           fpu_soft:
           fpu_soft:
             result:='-mfpu=softvfp '+result;
             result:='-mfpu=softvfp '+result;
+          fpu_fpa:
+            result:='-mfpu=fpa '+result;
+          fpu_fpa10:
+            result:='-mfpu=fpa10 '+result;
+          fpu_fpa11:
+            result:='-mfpu=fpa11 '+result;
           fpu_vfpv2:
           fpu_vfpv2:
             result:='-mfpu=vfpv2 '+result;
             result:='-mfpu=vfpv2 '+result;
           fpu_vfpv3:
           fpu_vfpv3: