浏览代码

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

git-svn-id: trunk@33939 -
Jonas Maebe 9 年之前
父节点
当前提交
a59fc7c165
共有 1 个文件被更改,包括 3 次插入0 次删除
  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;