summaryrefslogtreecommitdiff
path: root/compiler/arm
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-09-23 21:25:38 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-09-23 21:25:38 +0000
commitc4a90f28947307762ab88cc0fa0bba2f35cc0320 (patch)
tree27aa9fce6e376a2e791b379b8c11187d9f755938 /compiler/arm
parent8108108a4711abca2ea0a6f2e7d64486799bd2db (diff)
downloadfpc-c4a90f28947307762ab88cc0fa0bba2f35cc0320.tar.gz
- removed as_darwin, since there is no difference with as_gas (there is no
GNU as from binutils for Darwin, and Apple's "as" is based on an old version of GNU as) o this will not cause any backward compatibility problems, as the previous identifier for as_darwin was "AS-Darwin" and the compiler compared the uppercase value of the -A parameter to the identifier, so it was not explicitly selectable earlier. The new name is "AS", so it is explicitly selectable via -Aas like on other platforms. git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@31806 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/arm')
-rw-r--r--compiler/arm/agarmgas.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/arm/agarmgas.pas b/compiler/arm/agarmgas.pas
index 9a37cc4667..c0877e9cf4 100644
--- a/compiler/arm/agarmgas.pas
+++ b/compiler/arm/agarmgas.pas
@@ -413,8 +413,8 @@ unit agarmgas;
as_arm_gas_darwin_info : tasminfo =
(
- id : as_darwin;
- idtxt : 'AS-Darwin';
+ id : as_gas;
+ idtxt : 'AS';
asmbin : 'as';
asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch $ARCH';
supported_targets : [system_arm_darwin];