Sfoglia il codice sorgente

* take care of mips64* when calling gcc for the libgcc path

florian 2 anni fa
parent
commit
91c77c4809
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      packages/fpmkunit/src/fpmkunit.pp

+ 2 - 0
packages/fpmkunit/src/fpmkunit.pp

@@ -3181,6 +3181,8 @@ begin
       m68k:         result := GetGccDirArch('cpum68k',['-march=68020']);
       mips:         result := GetGccDirArch('cpumips',['-mips32','-EB','-mabi=32']);
       mipsel:       result := GetGccDirArch('cpumipsel',['-mips32','-EL','-mabi=32']);
+      mips64el:     result := GetGccDirArch('cpumipsel',['-mips64','-EL','-mabi=64']);
+      mips64:       result := GetGccDirArch('cpumipsel',['-mips64','-EB','-mabi=64']);
       riscv32:      result := GetGccDirArch('cpuriscv32',['-march=rv32imafdc']);
       riscv64:      result := GetGccDirArch('cpuriscv64',['-march=rv64imafdc']);
       sparc:        result := GetGccDirArch('cpusparc',['-m32']);