This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git
The following commit(s) were added to refs/heads/master by this push: new f63406f cibuild.sh: call testbuild.sh with '-e -Wno-cpp' option defaultly f63406f is described below commit f63406f82aec3ce52baa2be3fe0a5e143ab44849 Author: liuhaitao <liuhai...@xiaomi.com> AuthorDate: Fri Apr 10 14:44:24 2020 +0800 cibuild.sh: call testbuild.sh with '-e -Wno-cpp' option defaultly So suppress the build warnings with pre-processor directive #warning in GCC. Signed-off-by: liuhaitao <liuhai...@xiaomi.com> --- cibuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuild.sh b/cibuild.sh index 8f9f0f4..5efdcc0 100755 --- a/cibuild.sh +++ b/cibuild.sh @@ -289,7 +289,7 @@ function run_builds { options+="-j $ncpus" for build in $builds; do - $nuttx/tools/testbuild.sh $options $build + $nuttx/tools/testbuild.sh $options -e -Wno-cpp $build done }