Browse Source

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

git-svn-id: trunk@33939 -
Jonas Maebe 9 years ago
parent
commit
a59fc7c165
1 changed files with 3 additions and 0 deletions
  1. 3 0
      compiler/systems.pas

+ 3 - 0
compiler/systems.pas

@@ -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;