From 1131b08d6d8daf1e6323c7383736735a837ec50e Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Thu, 24 Sep 2015 06:49:29 +0000 Subject: [PATCH] * changed idtext of as_darwin to AS-DARWIN, so it can be explicitly selected via -Aas-darwin (since it compares uppercased strings) git-svn-id: trunk@31808 - --- compiler/aarch64/agcpugas.pas | 2 +- compiler/arm/agarmgas.pas | 2 +- compiler/ppcgen/agppcgas.pas | 2 +- compiler/x86/agx86att.pas | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/aarch64/agcpugas.pas b/compiler/aarch64/agcpugas.pas index a5c14bf586..37cceb2618 100644 --- a/compiler/aarch64/agcpugas.pas +++ b/compiler/aarch64/agcpugas.pas @@ -298,7 +298,7 @@ unit agcpugas; as_aarch64_gas_darwin_info : tasminfo = ( id : as_darwin; - idtxt : 'AS-Darwin'; + idtxt : 'AS-DARWIN'; asmbin : 'as'; asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch arm64'; supported_targets : [system_aarch64_darwin]; diff --git a/compiler/arm/agarmgas.pas b/compiler/arm/agarmgas.pas index 9a37cc4667..4f2f92161c 100644 --- a/compiler/arm/agarmgas.pas +++ b/compiler/arm/agarmgas.pas @@ -414,7 +414,7 @@ unit agarmgas; as_arm_gas_darwin_info : tasminfo = ( id : as_darwin; - idtxt : 'AS-Darwin'; + idtxt : 'AS-DARWIN'; asmbin : 'as'; asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch $ARCH'; supported_targets : [system_arm_darwin]; diff --git a/compiler/ppcgen/agppcgas.pas b/compiler/ppcgen/agppcgas.pas index 67180a3147..3181ce81e4 100644 --- a/compiler/ppcgen/agppcgas.pas +++ b/compiler/ppcgen/agppcgas.pas @@ -555,7 +555,7 @@ unit agppcgas; ( id : as_darwin; - idtxt : 'AS-Darwin'; + idtxt : 'AS-DARWIN'; asmbin : 'as'; asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch $ARCH'; supported_targets : [system_powerpc_darwin,system_powerpc64_darwin]; diff --git a/compiler/x86/agx86att.pas b/compiler/x86/agx86att.pas index 35dcef0cd9..8dee573a45 100644 --- a/compiler/x86/agx86att.pas +++ b/compiler/x86/agx86att.pas @@ -474,7 +474,7 @@ interface as_x86_64_gas_darwin_info : tasminfo = ( id : as_darwin; - idtxt : 'AS-Darwin'; + idtxt : 'AS-DARWIN'; asmbin : 'as'; asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch x86_64'; supported_targets : [system_x86_64_darwin,system_x86_64_iphonesim]; @@ -535,7 +535,7 @@ interface as_i386_gas_darwin_info : tasminfo = ( id : as_darwin; - idtxt : 'AS-Darwin'; + idtxt : 'AS-DARWIN'; asmbin : 'as'; asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch i386'; supported_targets : [system_i386_darwin,system_i386_iphonesim];