mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 09:29:26 +02:00
* m68k-atari: make the Atari target always default to VLink, even for crosscompilers
This commit is contained in:
parent
ed2dca9a9b
commit
a87b38f753
@ -3811,14 +3811,15 @@ begin
|
|||||||
else
|
else
|
||||||
features:=features+target_unsup_features;
|
features:=features+target_unsup_features;
|
||||||
|
|
||||||
{$if defined(atari) or defined(hasamiga)}
|
{$if defined(hasamiga)}
|
||||||
{ enable vlink as default linker on Atari and Amiga but not for cross compilers (for now) }
|
{ enable vlink as default linker on Amiga but not for cross compilers (for now) }
|
||||||
if (target_info.system in [system_m68k_amiga,system_m68k_atari,system_powerpc_amiga]) and
|
if (target_info.system in [system_m68k_amiga,system_powerpc_amiga]) and
|
||||||
not LinkerSetExplicitly then
|
not LinkerSetExplicitly then
|
||||||
include(init_settings.globalswitches,cs_link_vlink);
|
include(init_settings.globalswitches,cs_link_vlink);
|
||||||
{$endif}
|
{$endif}
|
||||||
{$ifdef m68k}
|
{$ifdef m68k}
|
||||||
if (target_info.system in [system_m68k_sinclairql]) and
|
{ always enable vlink as default linker for the Sinclair QL and Atari }
|
||||||
|
if (target_info.system in [system_m68k_sinclairql,system_m68k_atari]) and
|
||||||
not LinkerSetExplicitly then
|
not LinkerSetExplicitly then
|
||||||
include(init_settings.globalswitches,cs_link_vlink);
|
include(init_settings.globalswitches,cs_link_vlink);
|
||||||
{$endif m68k}
|
{$endif m68k}
|
||||||
|
Loading…
Reference in New Issue
Block a user