mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 06:29:16 +02:00
- disabled CFI again for Darwin, it doesn't work there yet
git-svn-id: trunk@12911 -
This commit is contained in:
parent
173ca78a68
commit
c90ecac667
@ -141,8 +141,12 @@ implementation
|
|||||||
{ Call frame information }
|
{ Call frame information }
|
||||||
{ MWE: we write our own info, so dwarf asm support is not really needed }
|
{ MWE: we write our own info, so dwarf asm support is not really needed }
|
||||||
{ if (af_supports_dwarf in target_asm.flags) and }
|
{ if (af_supports_dwarf in target_asm.flags) and }
|
||||||
if (tf_needs_dwarf_cfi in target_info.flags) or
|
{ CFI is currently broken for Darwin }
|
||||||
(paratargetdbg in [dbg_dwarf2, dbg_dwarf3]) then
|
if not(target_info.system in systems_darwin) and
|
||||||
|
(
|
||||||
|
(tf_needs_dwarf_cfi in target_info.flags) or
|
||||||
|
(paratargetdbg in [dbg_dwarf2, dbg_dwarf3])
|
||||||
|
) then
|
||||||
begin
|
begin
|
||||||
current_asmdata.asmlists[al_dwarf_frame].Free;
|
current_asmdata.asmlists[al_dwarf_frame].Free;
|
||||||
current_asmdata.asmlists[al_dwarf_frame] := TAsmList.create;
|
current_asmdata.asmlists[al_dwarf_frame] := TAsmList.create;
|
||||||
|
Loading…
Reference in New Issue
Block a user