+ Changes for alpha

This commit is contained in:
michael 1999-08-03 13:50:16 +00:00
parent 12cac201d5
commit eba7f7c4ed
3 changed files with 21 additions and 5 deletions

View File

@ -186,6 +186,10 @@ begin
target_m68k_Linux :
importlib:=new(pimportliblinux,Init);
{$endif m68k}
{$ifdef alpha}
target_alpha_Linux :
importlib:=new(pimportliblinux,Init);
{$endif alpha}
else
importlib:=new(pimportlib,Init);
end;
@ -195,7 +199,10 @@ end;
end.
{
$Log$
Revision 1.10 1999-05-17 14:33:01 pierre
Revision 1.11 1999-08-03 13:50:16 michael
+ Changes for alpha
Revision 1.10 1999/05/17 14:33:01 pierre
* func was not disposed in timported_item
Revision 1.9 1998/11/28 16:20:50 peter

View File

@ -60,6 +60,9 @@ unit pexpr;
{$endif}
{$ifdef m68k}
,m68k
{$endif}
{$ifdef alpha}
,cpubase,cpuinfo
{$endif}
;
@ -2064,7 +2067,10 @@ unit pexpr;
end.
{
$Log$
Revision 1.127 1999-08-01 18:28:13 florian
Revision 1.128 1999-08-03 13:50:17 michael
+ Changes for alpha
Revision 1.127 1999/08/01 18:28:13 florian
* modifications for the new code generator
Revision 1.126 1999/07/30 12:28:40 peter

View File

@ -945,7 +945,7 @@ implementation
{$endif m68k}
{$ifdef alpha}
,(
id : ar_alha_ar;
id : ar_alpha_ar;
arbin : 'ar';
arcmd : 'rs $LIB $FILES'
)
@ -1235,7 +1235,7 @@ implementation
)
{$endif m68k}
{$ifdef alpha}
(
,(
target : target_alpha_LINUX;
flags : [];
cpu : alpha;
@ -1621,7 +1621,10 @@ begin
end.
{
$Log$
Revision 1.84 1999-08-02 23:56:51 michael
Revision 1.85 1999-08-03 13:50:19 michael
+ Changes for alpha
Revision 1.84 1999/08/02 23:56:51 michael
+ Added alpha cpu and linux for alpha os
Revision 1.83 1999/07/10 10:26:20 peter