From d83004dee1cc329b640e68e075240354eaef97ad Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Tue, 2 Jan 2024 14:31:17 +0100 Subject: [PATCH] Add emulation_opt settings for all four mips CPUs --- compiler/systems/t_linux.pas | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index 6eba06465c..4239976b98 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -442,11 +442,22 @@ begin {$ifdef arm} target_opt:='';{$endif} {unknown :( } {$ifdef aarch64} target_opt:='';{$endif} {unknown :( } {$ifdef m68k} target_opt:='';{$endif} {unknown :( } -{$ifdef mips} +{$ifdef mips32} {$ifdef mipsel} platformopt:=' -EL'; + emulation_opt:=' -m elf32ltsmip'; {$else} platformopt:=' -EB'; + emulation_opt:=' -m elf32btsmip'; + {$endif} +{$endif} +{$ifdef mips64} + {$ifdef mips64el} + platformopt:=' -EL'; + emulation_opt:=' -m elf64ltsmip'; + {$else} + platformopt:=' -EB'; + emulation_opt:=' -m elf64btsmip'; {$endif} {$endif} {$ifdef riscv32}