mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-04-28 10:44:38 +00:00
Proper solution to nasm compilation problems in Borland context.
This commit is contained in:
parent
f6fefec921
commit
cd029eb6f0
@ -221,7 +221,15 @@ sub using486
|
||||
|
||||
sub main'file
|
||||
{
|
||||
push(@out, "segment .text use32\n");
|
||||
local $tmp;
|
||||
$tmp=<<___;
|
||||
%ifdef __omf__
|
||||
section code use32 class=code
|
||||
%else
|
||||
section .text
|
||||
%endif
|
||||
___
|
||||
push(@out,$tmp);
|
||||
}
|
||||
|
||||
sub main'function_begin
|
||||
|
@ -51,7 +51,7 @@ $lfile='';
|
||||
$shlib_ex_obj="";
|
||||
$app_ex_obj="c0x32.obj";
|
||||
|
||||
$asm='nasmw -f obj';
|
||||
$asm='nasmw -f obj -d__omf__';
|
||||
$asm.=" /Zi" if $debug;
|
||||
$afile='-o';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user