- disable attempts to generate debug info when using llvm for now

git-svn-id: trunk@33939 -
This commit is contained in:
Jonas Maebe 2016-06-09 22:00:02 +00:00
parent ea54b6b2c5
commit a59fc7c165

View File

@ -544,12 +544,15 @@ end;
function set_target_dbg(t:tdbg):boolean;
begin
result:=false;
{ no debugging support for llvm yet }
{$ifndef llvm}
if assigned(dbginfos[t]) then
begin
target_dbg:=dbginfos[t]^;
result:=true;
exit;
end;
{$endif}
end;