aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorVictor Chong <victor.chong@linaro.org>2016-11-30 08:31:10 +0000
committerVictor Chong <victor.chong@linaro.org>2016-11-30 08:56:50 +0000
commit249e707ba5b2f1ea0ba42cde6c8d20b836b6be89 (patch)
tree182ebbf4f59e983ac651e9c21b7f75833e55b054 /README.md
parent71c1078ae173e8d81ca6bb01eafb39611d3d80bd (diff)
README: Update outdated text and link
Signed-off-by: Victor Chong <victor.chong@linaro.org> Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Joakim Bech <joakim.bech@linaro.org>
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 13 insertions, 6 deletions
diff --git a/README.md b/README.md
index b862e2c1..1c04a1cf 100644
--- a/README.md
+++ b/README.md
@@ -134,13 +134,20 @@ the target device. This includes both 64- and 32-bit toolchains. For the exact
toolchain in use, please have a look at [toolchain.mk](https://github.com/OP-TEE/build/blob/master/toolchain.mk)
and then look at the targets makefile (see [build.git](https://github.com/OP-TEE/build))
to find out where the respective toolchain will be used. For example in the
-[QEMU makefile](https://github.com/OP-TEE/build/blob/master/qemu.mk#L12-L15) you
-will see:
+[QEMU makefile](https://github.com/OP-TEE/build/blob/master/qemu.mk#L6-L9) and
+[common makefile](https://github.com/OP-TEE/build/blob/master/common.mk#L90-L93)
+you will see, respectively:
```
-CROSS_COMPILE_NS_USER ?= "$(CCACHE)$(AARCH32_CROSS_COMPILE)"
-CROSS_COMPILE_NS_KERNEL ?= "$(CCACHE)$(AARCH32_CROSS_COMPILE)"
-CROSS_COMPILE_S_USER ?= "$(CCACHE)$(AARCH32_CROSS_COMPILE)"
-CROSS_COMPILE_S_KERNEL ?= "$(CCACHE)$(AARCH32_CROSS_COMPILE)"
+override COMPILE_NS_USER := 32
+override COMPILE_NS_KERNEL := 32
+override COMPILE_S_USER := 32
+override COMPILE_S_KERNEL := 32
+```
+```
+CROSS_COMPILE_NS_USER ?= "$(CCACHE)$(AARCH$(COMPILE_NS_USER)_CROSS_COMPILE)"
+CROSS_COMPILE_NS_KERNEL ?= "$(CCACHE)$(AARCH$(COMPILE_NS_KERNEL)_CROSS_COMPILE)"
+CROSS_COMPILE_S_USER ?= "$(CCACHE)$(AARCH$(COMPILE_S_USER)_CROSS_COMPILE)"
+CROSS_COMPILE_S_KERNEL ?= "$(CCACHE)$(AARCH$(COMPILE_S_KERNEL)_CROSS_COMPILE)"
```
However, if you only want to compile optee_os, then you can do like this: