Преглед изворни кода

Darwin: don't try to print size statistics if the binary wasn't linked

Jonas Maebe пре 2 година
родитељ
комит
b150480c60
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      compiler/systems/t_darwin.pas

+ 1 - 1
compiler/systems/t_darwin.pas

@@ -589,7 +589,7 @@ implementation
        end;
 
      { Post process }
-     if success then
+     if success and not(cs_link_nolink in current_settings.globalswitches) then
        success:=PostProcessExecutable(current_module.exefilename,false);
 
       MakeExecutable:=success;   { otherwise a recursive call to link method }