Procházet zdrojové kódy

* Add android to supported targets for assemblers. It fixes assembling for i386-android.

git-svn-id: branches/targetandroid@23441 -
yury před 12 roky
rodič
revize
c2fed960c9

+ 2 - 1
compiler/arm/agarmgas.pas

@@ -354,7 +354,8 @@ unit agarmgas;
             idtxt  : 'AS';
             asmbin : 'as';
             asmcmd : '-o $OBJ $ASM';
-            supported_targets : [system_arm_linux,system_arm_wince,system_arm_gba,system_arm_palmos,system_arm_nds,system_arm_embedded,system_arm_symbian];
+            supported_targets : [system_arm_linux,system_arm_wince,system_arm_gba,system_arm_palmos,system_arm_nds,
+                                 system_arm_embedded,system_arm_symbian,system_arm_android];
             flags : [af_needar,af_smartlink_sections];
             labelprefix : '.L';
             comment : '# ';

+ 2 - 1
compiler/i386/cpuelf.pas

@@ -506,7 +506,8 @@ implementation
                               system_i386_freebsd,system_i386_haiku,
                               system_i386_openbsd,system_i386_netbsd,
                               system_i386_Netware,system_i386_netwlibc,
-                              system_i386_solaris,system_i386_embedded];
+                              system_i386_solaris,system_i386_embedded,
+                              system_i386_android];
          flags : [af_outputbinary,af_smartlink_sections,af_supports_dwarf];
          labelprefix : '.L';
          comment : '';

+ 1 - 1
compiler/x86/agx86att.pas

@@ -445,7 +445,7 @@ interface
             supported_targets : [system_i386_GO32V2,system_i386_linux,system_i386_Win32,system_i386_freebsd,system_i386_solaris,system_i386_beos,
                                 system_i386_netbsd,system_i386_Netware,system_i386_qnx,system_i386_wdosx,system_i386_openbsd,
                                 system_i386_netwlibc,system_i386_wince,system_i386_embedded,system_i386_symbian,system_i386_haiku,system_x86_6432_linux,
-                                system_i386_nativent];
+                                system_i386_nativent,system_i386_android];
             flags : [af_needar,af_smartlink_sections,af_supports_dwarf];
             labelprefix : '.L';
             comment : '# ';