mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 10:09:35 +01:00
* properly set default source system for darwin cross compilations
git-svn-id: trunk@4596 -
This commit is contained in:
parent
e2872c9aea
commit
8fbc58e1c9
@ -746,6 +746,9 @@ begin
|
||||
{$ifdef freebsd}
|
||||
default_target(system_i386_freebsd);
|
||||
{$endif}
|
||||
{$ifdef darwin}
|
||||
default_target(system_i386_darwin);
|
||||
{$endif}
|
||||
{$endif cpu86}
|
||||
{$endif i386}
|
||||
|
||||
@ -791,7 +794,12 @@ begin
|
||||
{$ifdef cpupowerpc}
|
||||
default_target(source_info.system);
|
||||
{$else cpupowerpc}
|
||||
{$ifdef linux}
|
||||
default_target(system_powerpc_linux);
|
||||
{$endif}
|
||||
{$ifdef darwin}
|
||||
default_target(system_powerpc_darwin);
|
||||
{$endif}
|
||||
{$endif cpupowerpc}
|
||||
{$endif powerpc}
|
||||
{$ifdef POWERPC64}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user