Browse Source

Set correct source info for mips/mipsel

git-svn-id: trunk@21545 -
pierre 13 years ago
parent
commit
9fc6f91cd0
1 changed files with 6 additions and 1 deletions
  1. 6 1
      compiler/systems/i_linux.pas

+ 6 - 1
compiler/systems/i_linux.pas

@@ -968,7 +968,12 @@ initialization
 {$endif CPUARM}
 {$endif CPUARM}
 {$ifdef CPUMIPS}
 {$ifdef CPUMIPS}
   {$ifdef linux}
   {$ifdef linux}
-    set_source_info(system_mipsel_linux_info);
+    set_source_info(system_mips_linux_info);
   {$endif linux}
   {$endif linux}
 {$endif CPUMIPS}
 {$endif CPUMIPS}
+{$ifdef CPUMIPSEL}
+  {$ifdef linux}
+    set_source_info(system_mipsel_linux_info);
+  {$endif linux}
+{$endif CPUMIPSEL}
 end.
 end.