| From a8c7c58679126dd4c75538aeedfee0c501df6548 Mon Sep 17 00:00:00 2001 |
| From: Anton Antonov <anton.antonov@arm.com> |
| Date: Mon, 19 Sep 2022 23:37:31 +0200 |
| Subject: [PATCH 2/2] Disable unnecessary targets |
| |
| For Trusted Services we require only newlib and libgloss built for |
| target. We don't need to build any host tools and we can use a |
| cross-compiler only. This patch removes skipping newlib and libgloss for |
| this case. |
| |
| Signed-off-by: Anton Antonov <anton.antonov@arm.com> |
| --- |
| configure | 2 +- |
| 1 file changed, 1 insertion(+), 1 deletion(-) |
| |
| diff --git a/configure b/configure |
| index 1eb71a806..dce91609e 100755 |
| --- a/configure |
| +++ b/configure |
| @@ -2886,7 +2886,7 @@ esac |
| |
| # Some are only suitable for cross toolchains. |
| # Remove these if host=target. |
| -cross_only="target-libgloss target-newlib target-opcodes" |
| +cross_only="target-opcodes" |
| |
| case $is_cross_compiler in |
| no) skipdirs="${skipdirs} ${cross_only}" ;; |
| -- |
| 2.37.0.windows.1 |
| |