mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
Asm build portability.
Don't use Win32 specific options in mk1mf.pl to build assembly language files.
This commit is contained in:
parent
29d422e2a0
commit
045b2809f8
@ -1269,15 +1269,15 @@ sub perlasm_compile_target
|
||||
|
||||
my($ret);
|
||||
$bname =~ s/(.*)\.[^\.]$/$1/;
|
||||
$ret ="\$(TMP_D)$o$bname.asm: $source\n";
|
||||
$ret ="\$(TMP_D)$o$bname$asm_suffix: $source\n";
|
||||
$ret.="\t\$(PERL) $source $asmtype \$(CFLAG) >\$\@\n";
|
||||
if ($fipscanisteronly)
|
||||
{
|
||||
$ret .= "\t\$(PERL) util\\fipsas.pl . \$@ norunasm \$(CFLAG)\n";
|
||||
$ret .= "\t\$(PERL) util$o.pl . \$@ norunasm \$(CFLAG)\n";
|
||||
}
|
||||
$ret .= "\n";
|
||||
$ret.="$target: \$(TMP_D)$o$bname.asm\n";
|
||||
$ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
|
||||
$ret.="$target: \$(TMP_D)$o$bname$asm_suffix\n";
|
||||
$ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname$asm_suffix\n\n";
|
||||
return($ret);
|
||||
}
|
||||
|
||||
|
@ -26,6 +26,7 @@ else
|
||||
{ $cflags="-O"; }
|
||||
}
|
||||
$obj='.o';
|
||||
$asm_suffix='.s';
|
||||
$ofile='-o ';
|
||||
|
||||
# EXE linking stuff
|
||||
|
Loading…
Reference in New Issue
Block a user