Selaa lähdekoodia

* tp compiler also uses 'as' as asmprefix

peter 27 vuotta sitten
vanhempi
commit
f152ac4804
1 muutettua tiedostoa jossa 11 lisäystä ja 4 poistoa
  1. 11 4
      compiler/files.pas

+ 11 - 4
compiler/files.pas

@@ -755,12 +755,16 @@ unit files;
          staticlibfilename:=nil;
          staticlibfilename:=nil;
          sharedlibfilename:=nil;
          sharedlibfilename:=nil;
          exefilename:=nil;
          exefilename:=nil;
-         { go32v2 has the famous 8.3 limit ;) }
-{$ifdef go32v2}
+         { Dos has the famous 8.3 limit :( }
+{$ifdef tp}
          asmprefix:=stringdup(FixFileName('as'));
          asmprefix:=stringdup(FixFileName('as'));
 {$else}
 {$else}
+  {$ifdef go32v2}
+         asmprefix:=stringdup(FixFileName('as'));
+  {$else}
          asmprefix:=stringdup(FixFileName(n));
          asmprefix:=stringdup(FixFileName(n));
-{$endif}
+  {$endif}
+{$endif tp}
          path:=nil;
          path:=nil;
          setfilename(p+n);
          setfilename(p+n);
          used_units.init;
          used_units.init;
@@ -864,7 +868,10 @@ unit files;
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.43  1998-09-03 17:08:45  pierre
+  Revision 1.44  1998-09-10 13:51:32  peter
+    * tp compiler also uses 'as' as asmprefix
+
+  Revision 1.43  1998/09/03 17:08:45  pierre
     * better lines for stabs
     * better lines for stabs
       (no scroll back to if before else part
       (no scroll back to if before else part
       no return to case line at jump outside case)
       no return to case line at jump outside case)