mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:07:56 +02:00
Disable -EB/-EL passing for freertos OS as the corresponding released binutils do not support this option
This commit is contained in:
parent
ba9fc5edca
commit
d24548f8d8
@ -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');
|
||||
|
Loading…
Reference in New Issue
Block a user