This is an automated email from the ASF dual-hosted git repository.
aguettouche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new bcfb45d tools/testbuild.sh: kconfig-tweak disable
CONFIG_TOOLCHAIN_WINDOWS under linux host (#130)
bcfb45d is described below
commit bcfb45dfa00d44be5f71e557ced6dc1925a75c5c
Author: liuguo09 <[email protected]>
AuthorDate: Sun Jan 19 21:29:21 2020 +0800
tools/testbuild.sh: kconfig-tweak disable CONFIG_TOOLCHAIN_WINDOWS under
linux host (#130)
Make sure kconfig-tweak disables CONFIG_TOOLCHAIN_WINDOWS under linux host,
or it would break the build when using testbuild.sh for some configs.
Signed-off-by: liuhaitao <[email protected]>
---
tools/testbuild.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/testbuild.sh b/tools/testbuild.sh
index d23ca89..ca4695d 100755
--- a/tools/testbuild.sh
+++ b/tools/testbuild.sh
@@ -173,6 +173,8 @@ function configure {
kconfig-tweak --file $nuttx/.config --enable CONFIG_HOST_LINUX
kconfig-tweak --file $nuttx/.config --disable CONFIG_HOST_WINDOWS
+ kconfig-tweak --file $nuttx/.config --disable CONFIG_TOOLCHAIN_WINDOWS
+
kconfig-tweak --file $nuttx/.config --disable CONFIG_WINDOWS_NATIVE
kconfig-tweak --file $nuttx/.config --disable CONFIG_WINDOWS_CYGWIN
kconfig-tweak --file $nuttx/.config --disable CONFIG_WINDOWS_MSYS