From d24548f8d8a26e19cd306b2f58ea5f2a62b6ae8c Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Thu, 25 May 2023 21:47:27 +0000 Subject: [PATCH] Disable -EB/-EL passing for freertos OS as the corresponding released binutils do not support this option --- compiler/xtensa/agcpugas.pas | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/xtensa/agcpugas.pas b/compiler/xtensa/agcpugas.pas index fb8159bd72..474db5cc31 100644 --- a/compiler/xtensa/agcpugas.pas +++ b/compiler/xtensa/agcpugas.pas @@ -66,7 +66,10 @@ unit agcpugas; function TXtensaGNUAssembler.MakeCmdLine: TCmdStr; begin result:=inherited MakeCmdLine; - if target_info.endian=endian_little then + { Released FreeRTOS binutils do not support -EB/-EL options } + if target_info.system=system_xtensa_freertos then + Replace(result,'$SHORTENDIAN','') + else if target_info.endian=endian_little then Replace(result,'$SHORTENDIAN','-EL') else Replace(result,'$SHORTENDIAN','-EB');