perlasm/x86asm.pl: recognize elf-1 denoting old ELF platforms.
This commit is contained in:
parent
ce876d8316
commit
b62a4a1c0e
1 changed files with 2 additions and 0 deletions
|
@ -255,6 +255,8 @@ sub ::asm_init
|
|||
$elf=$cpp=$coff=$aout=$macosx=$win32=$netware=$mwerks=$android=0;
|
||||
if (($type eq "elf"))
|
||||
{ $elf=1; require "x86gas.pl"; }
|
||||
elsif (($type eq "elf-1"))
|
||||
{ $elf=-1; require "x86gas.pl"; }
|
||||
elsif (($type eq "a\.out"))
|
||||
{ $aout=1; require "x86gas.pl"; }
|
||||
elsif (($type eq "coff" or $type eq "gaswin"))
|
||||
|
|
Loading…
Reference in a new issue