浏览代码

* pass float abi always to the arm assembler

git-svn-id: trunk@39996 -
florian 6 年之前
父节点
当前提交
2cbb9895be
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      compiler/arm/agarmgas.pas

+ 5 - 1
compiler/arm/agarmgas.pas

@@ -124,7 +124,11 @@ unit agarmgas;
 
 
         if target_info.abi = abi_eabihf then
         if target_info.abi = abi_eabihf then
           { options based on what gcc uses on debian armhf }
           { options based on what gcc uses on debian armhf }
-          result:='-mfloat-abi=hard -meabi=5 '+result;
+          result:='-mfloat-abi=hard -meabi=5 '+result
+        else if (target_info.abi = abi_eabi) and not(current_settings.fputype = fpu_soft) then
+          result:='-mfloat-abi=softfp -meabi=5 '+result
+        else if (target_info.abi = abi_eabi) and (current_settings.fputype = fpu_soft) then
+          result:='-mfloat-abi=soft -meabi=5 '+result;
       end;
       end;
 
 
     procedure TArmGNUAssembler.WriteExtraHeader;
     procedure TArmGNUAssembler.WriteExtraHeader;