Add powerpc64 xcoff support for AIX

git-svn-id: trunk@29156 -
This commit is contained in:
pierre 2014-11-26 15:45:55 +00:00
parent 49a5dcbf53
commit 364a66fd7b
2 changed files with 3 additions and 2 deletions

View File

@ -272,6 +272,7 @@ begin
case CurrentTarget.machine of
// mtnone :
mtppc : Result.MachineType:=cmtppc32aix;
mtppc64 : Result.MachineType:=cmtppc64aix;
end;
end;

View File

@ -74,7 +74,7 @@ var
(name : 'i386'; formats : [ofElf, ofCoff, ofMachO]), //mti386
(name : 'x86_64'; formats : [ofElf, ofCoff, ofMachO]), //mtx86_64
(name : 'powerpc'; formats : [ofElf, ofXCoff, ofMachO]), //mtppc
(name : 'powerpc64'; formats : [ofElf, ofMachO]), //mtppc64
(name : 'powerpc64'; formats : [ofElf, ofXCoff, ofMachO]), //mtppc64
(name : 'arm'; formats : [ofElf, ofCoff, ofMachO]), //mtarm
(name : 'armeb'; formats : [ofElf]), //mtarmeb
(name : 'm68k'; formats : [ofElf]), //mtm68k
@ -102,7 +102,7 @@ var
mtia64,mtmips,mtmipsel]),
(name : 'coff'; ext : '.o'; machines : [mti386,mtx86_64,mtarm,
mtppc,mtppc64]),
(name : 'xcoff'; ext : '.o'; machines : [mtppc{,mtppc64}]),
(name : 'xcoff'; ext : '.o'; machines : [mtppc,mtppc64]),
(name : 'mach-o'; ext : '.or'; machines : [mti386,mtx86_64,mtppc,
mtppc64,mtarm]),
(name : 'external'; ext : '.fpcres'; machines : [mtBigEndian,mtLittleEndian])