Parcourir la source

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

git-svn-id: trunk@33939 -
Jonas Maebe il y a 9 ans
Parent
commit
a59fc7c165
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  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;