Description: Fixed compilation on mipsel
 This patch fixes a bug causing CGE not compile on mipsel architecture.
 .
 The issue was that on mipsel both CPUmips and CPUmipsel are defined by the
 compiler.
Author: Abou Al Montacir <abou.almotacir@sfr.fr>

diff --git a/tools/common-code/toolarchitectures.pas b/tools/common-code/toolarchitectures.pas
index 905fa46..9ae4e07 100644
--- a/tools/common-code/toolarchitectures.pas
+++ b/tools/common-code/toolarchitectures.pas
@@ -138,8 +138,8 @@ const
     {$ifdef CPUpowerpc64} powerpc64 {$endif}
     {$ifdef CPUavr} avr {$endif}
     {$ifdef CPUarmeb} armeb {$endif}
-    {$ifdef CPUmips} mips {$endif}
-    {$ifdef CPUmipsel} mipsel {$endif}
+    {$ifdef CPUmipsel} mipsel {$else}
+    {$ifdef CPUmips} mips {$endif}{$endif}
     {$ifdef CPUjvm} jvm {$endif}
     {$ifdef CPUi8086} i8086 {$endif}
     {$ifdef CPUsparc64} sparc64 {$endif}
