2
0
florian 23 жил өмнө
parent
commit
1a13334e40
1 өөрчлөгдсөн 22 нэмэгдсэн , 9 устгасан
  1. 22 9
      compiler/compiler.pas

+ 22 - 9
compiler/compiler.pas

@@ -64,13 +64,23 @@ unit compiler;
      {$fatal cannot define two CPU switches}
    {$endif}
    {$endif}
-    {$ifdef SPARC}
-    {$ifndef CPUOK}
-    {$DEFINE CPUOK}
-    {$else}
-      {$fatal cannot define two CPU switches}
-    {$endif}
-    {$endif}
+   
+   {$ifdef SPARC}
+   {$ifndef CPUOK}
+   {$DEFINE CPUOK}
+   {$else}
+     {$fatal cannot define two CPU switches}
+   {$endif}
+   {$endif}
+
+   {$ifdef x86_64}
+   {$ifndef CPUOK}
+   {$DEFINE CPUOK}
+   {$else}
+     {$fatal cannot define two CPU switches}
+   {$endif}
+   {$endif}
+
 
    {$ifndef CPUOK}
    {$fatal One of the switches I386, iA64, Alpha, PowerPC or M68K must be defined}
@@ -337,7 +347,10 @@ end;
 end.
 {
   $Log$
-  Revision 1.30  2002-07-01 18:46:22  peter
+  Revision 1.31  2002-07-04 19:00:23  florian
+    + x86_64 define added
+
+  Revision 1.30  2002/07/01 18:46:22  peter
     * internal linker
     * reorganized aasm layer
 
@@ -376,4 +389,4 @@ end.
   Revision 1.23  2002/03/24 19:05:31  carl
   + patch for SPARC from Mazen NEIFER
 
-}
+}