mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 07:29:29 +02:00
* unfortunately tf_smartlink_sections is mutually exclusive with
tf_smartlink_library, and defining both breaks sdasz80, so put this behind ifdef Z80_SMARTLINK_SECTIONS git-svn-id: trunk@45153 -
This commit is contained in:
parent
23fc0fe66a
commit
573d69c8fe
@ -33,9 +33,14 @@ unit i_zxspectrum;
|
|||||||
system : system_z80_zxspectrum;
|
system : system_z80_zxspectrum;
|
||||||
name : 'ZX Spectrum';
|
name : 'ZX Spectrum';
|
||||||
shortname : 'zxspectrum';
|
shortname : 'zxspectrum';
|
||||||
flags : [tf_needs_symbol_size,tf_files_case_sensitive,
|
flags : [
|
||||||
tf_smartlink_library,tf_smartlink_sections,
|
{$ifdef Z80_SMARTLINK_SECTIONS}
|
||||||
tf_no_objectfiles_when_smartlinking];
|
tf_smartlink_sections,
|
||||||
|
{$else Z80_SMARTLINK_SECTIONS}
|
||||||
|
tf_smartlink_library,
|
||||||
|
tf_no_objectfiles_when_smartlinking,
|
||||||
|
{$endif Z80_SMARTLINK_SECTIONS}
|
||||||
|
tf_needs_symbol_size,tf_files_case_sensitive];
|
||||||
cpu : cpu_z80;
|
cpu : cpu_z80;
|
||||||
unit_env : '';
|
unit_env : '';
|
||||||
extradefines : '';
|
extradefines : '';
|
||||||
|
Loading…
Reference in New Issue
Block a user