diff options
-rw-r--r-- | docs/user-guide.rst | 2 | ||||
-rw-r--r-- | tools/cert_create/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/user-guide.rst b/docs/user-guide.rst index 6044ee2f..da260264 100644 --- a/docs/user-guide.rst +++ b/docs/user-guide.rst @@ -52,7 +52,7 @@ Install the required packages to build TF-A with the following command: :: - sudo apt-get install build-essential gcc make git libssl-dev + sudo apt-get install device-tree-compiler build-essential gcc make git libssl-dev TF-A has been tested with `Linaro Release 17.10`_. diff --git a/tools/cert_create/Makefile b/tools/cert_create/Makefile index 8a1958ff..7b10e3e3 100644 --- a/tools/cert_create/Makefile +++ b/tools/cert_create/Makefile @@ -75,7 +75,7 @@ ${BINARY}: ${OBJECTS} Makefile @echo " LD $@" @echo 'const char build_msg[] = "Built : "__TIME__", "__DATE__; \ const char platform_msg[] = "${PLAT_MSG}";' | \ - ${CC} -c ${CFLAGS} -xc - -o src/build_msg.o + ${HOSTCC} -c ${CFLAGS} -xc - -o src/build_msg.o ${Q}${HOSTCC} src/build_msg.o ${OBJECTS} ${LIB_DIR} ${LIB} -o $@ %.o: %.c |