mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 00:54:22 +00:00
fix(build): pass the PLAT option during FIP tool compilation
Due to change [1], the FIP tool was compiled with the default platform instead of the one specified via the command line, as make_helpers.mk set the PLAT option to default. This happened because the root Makefile invoked FIP tool compilation without the PLAT option. The issue has been fixed by explicitly providing the PLAT option for FIP tool compilation. [1]: https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/26597 Change-Id: Icc516f8d44706df03c7e6ee123b58afeda72cea7 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
This commit is contained in:
parent
5d38dc09eb
commit
40469bf977
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1716,7 +1716,7 @@ fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
|
|||
|
||||
${FIPTOOL}: FORCE
|
||||
ifdef UNIX_MK
|
||||
$(q)${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
|
||||
$(q)${MAKE} PLAT=${PLAT} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
|
||||
else
|
||||
# Clear the MAKEFLAGS as we do not want
|
||||
# to pass the gnumake flags to nmake.
|
||||
|
|
Loading…
Add table
Reference in a new issue