对于相同的代码:
extern int scanf(char const * __restrict __format , ...) __asm__("__isoc99_scanf") ;
gcc可以成功编译,但是ndk-build失败。然后ndk-build命令报告一些类似这样的错误:
Error: undefined reference to'_isoc99_scanf'
Clang++: error: linker command failed with exit code 1 (use-v to see invocation)
我将代码LOCAL_CFLAGS += -std=c99
添加到Android.mk,但仍然失败。如何修改ndk-build以使编译成功