* set the omf section size limit to 32-bit for the dwarf debug sections

git-svn-id: trunk@39088 -
This commit is contained in:
nickysn 2018-05-22 12:41:51 +00:00
parent 065a7b63d9
commit ca50b14e21

View File

@ -586,7 +586,10 @@ implementation
if atype=sec_stack then
TOmfObjSection(Result).FCombination:=scStack
else if atype in [sec_debug_frame,sec_debug_info,sec_debug_line,sec_debug_abbrev,sec_debug_aranges,sec_debug_ranges] then
TOmfObjSection(Result).FUse:=suUse32;
begin
TOmfObjSection(Result).FUse:=suUse32;
TOmfObjSection(Result).SizeLimit:=high(longword);
end;
if section_belongs_to_dgroup(atype) then
TOmfObjSection(Result).FPrimaryGroup:='DGROUP';
end;