mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 01:29:08 +02:00
* Darwin targets that don't support link order sym files can't smart link
vectorized sections git-svn-id: trunk@48765 -
This commit is contained in:
parent
8b82e2a9cb
commit
6beb28316e
@ -1584,7 +1584,9 @@ implementation
|
||||
|
||||
class function ttai_typedconstbuilder.is_smartlink_vectorized_dead_strip: boolean;
|
||||
begin
|
||||
result:=tf_smartlink_sections in target_info.flags;
|
||||
result:=(tf_smartlink_sections in target_info.flags) and
|
||||
(not(target_info.system in systems_darwin) or
|
||||
(tf_supports_symbolorderfile in target_info.flags));
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user