tools/mksymtab.sh: Disable the mismatch warning of builtin declaration

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-02-13 17:32:43 +08:00 committed by Petro Karashchenko
parent 81f15936c1
commit a6773a8412

View File

@ -57,6 +57,11 @@ echo "#include <nuttx/compiler.h>"
echo "#include <nuttx/symtab.h>"
echo ""
echo "#if defined(__GNUC__) && !defined(__clang__)"
echo "# pragma GCC diagnostic ignored \"-Wbuiltin-declaration-mismatch\""
echo "#endif"
echo ""
for string in $varlist; do
var=`echo $string | sed -e "s/\"//g"`
echo "extern void *${var};"