mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 09:26:15 +02:00
* default target for x86_64 is linux
This commit is contained in:
parent
f0e07003be
commit
6bdfe21f79
@ -649,18 +649,27 @@ begin
|
|||||||
{$endif}
|
{$endif}
|
||||||
{$endif cpu86}
|
{$endif cpu86}
|
||||||
{$endif i386}
|
{$endif i386}
|
||||||
|
|
||||||
{$ifdef x86_64}
|
{$ifdef x86_64}
|
||||||
{$ifdef cpux86_64}
|
{$ifdef cpux86_64}
|
||||||
default_target(source_info.system);
|
default_target(source_info.system);
|
||||||
|
{$define source_system_set}
|
||||||
{$else cpux86_64}
|
{$else cpux86_64}
|
||||||
{$ifdef linux}
|
{$ifdef linux}
|
||||||
default_target(system_x86_64_linux);
|
default_target(system_x86_64_linux);
|
||||||
|
{$define source_system_set}
|
||||||
{$endif}
|
{$endif}
|
||||||
{$ifdef freebsd}
|
{$ifdef freebsd}
|
||||||
default_target(system_x86_64_freebsd);
|
default_target(system_x86_64_freebsd);
|
||||||
|
{$define source_system_set}
|
||||||
{$endif}
|
{$endif}
|
||||||
|
{ default is linux }
|
||||||
|
{$ifndef source_system_set}
|
||||||
|
default_target(system_x86_64_linux);
|
||||||
|
{$endif source_system_set}
|
||||||
{$endif cpux86_64}
|
{$endif cpux86_64}
|
||||||
{$endif x86_64}
|
{$endif x86_64}
|
||||||
|
|
||||||
{$ifdef m68k}
|
{$ifdef m68k}
|
||||||
{$ifdef cpu68}
|
{$ifdef cpu68}
|
||||||
default_target(source_info.target);
|
default_target(source_info.target);
|
||||||
@ -706,7 +715,10 @@ finalization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.94 2004-10-31 19:09:54 peter
|
Revision 1.95 2004-11-01 15:42:00 florian
|
||||||
|
* default target for x86_64 is linux
|
||||||
|
|
||||||
|
Revision 1.94 2004/10/31 19:09:54 peter
|
||||||
* default paths fixed
|
* default paths fixed
|
||||||
|
|
||||||
Revision 1.93 2004/10/25 15:38:41 peter
|
Revision 1.93 2004/10/25 15:38:41 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user