This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git
commit f63406f82aec3ce52baa2be3fe0a5e143ab44849 Author: liuhaitao <[email protected]> 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 <[email protected]> --- 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 }
