From cdc49338266492cb8b90a8d9731cfd36a6f9fe42 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sun, 15 Mar 2009 12:07:49 +0000 Subject: [PATCH] - removed accidentally committed change from previous commit git-svn-id: trunk@12895 - --- compiler/options.pas | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/compiler/options.pas b/compiler/options.pas index a53123787b..d54931b273 100644 --- a/compiler/options.pas +++ b/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;