mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-30 15:40:16 +02:00
* don't disable -Xs when -g and -Xg is used
git-svn-id: trunk@6629 -
This commit is contained in:
parent
9f3de7e809
commit
2ea4c683db
@ -2273,8 +2273,11 @@ begin
|
||||
include(init_settings.globalswitches,cs_link_extern);
|
||||
|
||||
{ turn off stripping if compiling with debuginfo or profile }
|
||||
if (cs_debuginfo in init_settings.moduleswitches) or
|
||||
(cs_profile in init_settings.moduleswitches) then
|
||||
if (
|
||||
(cs_debuginfo in init_settings.moduleswitches) or
|
||||
(cs_profile in init_settings.moduleswitches)
|
||||
) and
|
||||
not(cs_link_separate_dbg_file in init_settings.globalswitches) then
|
||||
exclude(init_settings.globalswitches,cs_link_strip);
|
||||
|
||||
{ force fpu emulation on arm/wince, arm/gba and arm/nds}
|
||||
|
Loading…
Reference in New Issue
Block a user