commit | 904f14872b122410521e610cbab24ffe2c8035b8 | [log] [tgz] |
---|---|---|
author | Yunli Liu <994605959@qq.com> | Fri Jan 22 11:08:08 2021 +0800 |
committer | Jérôme Forissier <jerome@forissier.org> | Fri Jan 22 08:19:56 2021 +0100 |
tree | 47f757d958f60b18a9a53e0171f116a6471eaed4 | |
parent | 487e6e4ca155564d3365b00a301f05b07380248d [diff] |
toolchain.mk: set SHELL = /bin/bash while use cmd " make -f toolchain.mk -j2" for download gcc on ubuntu machine, error occur "/bin/sh: 1: Bad substitution make:*** [toolchain.mk:39:aarch64] Error 2" root reason is that sh of ubuntu point to dash, not bash. the code caused the error was "(cd $(1)/bin && for f in *-none-linux*; do ln -s $$f $${f//-none} ; done;) \" Signed-off-by: Yunli Liu <994605959@qq.com> Acked-by: Jerome Forissier <jerome@forissier.org>
This git contains makefiles etc to be able to build a full OP-TEE developer setup for the OP-TEE project.
All official OP-TEE documentation has moved to http://optee.readthedocs.io. The pages that used to be here in this git can be found under build and Device specific information at he new location for the OP-TEE documentation.
// OP-TEE core maintainers