Browse Source

- removed accidentally committed change from previous commit

git-svn-id: trunk@12895 -
Jonas Maebe 16 years ago
parent
commit
cdc4933826
1 changed files with 3 additions and 7 deletions
  1. 3 7
      compiler/options.pas

+ 3 - 7
compiler/options.pas

@@ -2209,14 +2209,10 @@ begin
       set_target_asm(target_info.assemextern);
     end;
 
-  { smart linking does not yet work with DWARF debug info on most targets }
+  { smart linking does not yet work with DWARF debug info }
   if (paratargetdbg in [dbg_dwarf2,dbg_dwarf3]) and
-     (cs_link_smart in init_settings.globalswitches) and
-     not(target_info.system in systems_darwin) then
-    begin
-      Message(option_dwarf_smart_linking);
-      ForceStaticLinking;
-    end;
+     (cs_link_smart in init_settings.globalswitches) then
+    ForceStaticLinking;
 end;