mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00
fix(rme): relax RME compiler requirements
Currently building TF-A for the FVP with RME enabled requires a toolchain that understands the -march=armv8.6-a command line option, even though we actually don't need any ARMv8.6 features from the compiler. Relax the requirement to use ARMv8.5, since this is what's the GCC shipped with Ubuntu 20.04 understands. This is in line what the current RMM implementation uses as well. Change-Id: I3806dcff90319a87f003fe2c86b7cdcdebd625e4 Signed-off-by: Andre Przywara <andre.przywara@arm.com>
This commit is contained in:
parent
402d2316c8
commit
7670ddb1fb
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -148,7 +148,10 @@ endif
|
|||
CTX_INCLUDE_EL2_REGS := 1
|
||||
CTX_INCLUDE_AARCH32_REGS := 0
|
||||
ARM_ARCH_MAJOR := 8
|
||||
ARM_ARCH_MINOR := 6
|
||||
ARM_ARCH_MINOR := 5
|
||||
ENABLE_FEAT_ECV = 1
|
||||
ENABLE_FEAT_FGT = 1
|
||||
|
||||
endif
|
||||
|
||||
# USE_SPINLOCK_CAS requires AArch64 build
|
||||
|
|
Loading…
Add table
Reference in a new issue