最近在 vscode 中配置了 clangd 插件,发现不会提示 printf/scanf 相关的警告,于是测试了一下
#include <stdio.h>
int main() {
int i;
scanf("%f", &i);
printf("%d", i, i ,2);
return 0;
}
clang -Wall .\warn.c
.\warn.c:5:5: warning: 'scanf' is deprecated: This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. [-Wdeprecated-declarations]
scanf("%f", &i);
^
C:\Program Files (x86)\Windows Kits\10\Include\10.0.22621.0\ucrt\stdio.h:1275:20: note: 'scanf' has been explicitly marked deprecated here
_Check_return_ _CRT_INSECURE_DEPRECATE(scanf_s)
^
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.36.32532\include\vcruntime.h:355:55: note: expanded from macro
'_CRT_INSECURE_DEPRECATE'
#define _CRT_INSECURE_DEPRECATE(_Replacement) _CRT_DEPRECATE_TEXT( \
^
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.36.32532\include\vcruntime.h:345:47: note: expanded from macro
'_CRT_DEPRECATE_TEXT'
#define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))
^
.\warn.c:5:17: warning: format specifies type 'float *' but the argument has type 'int *' [-Wformat]
scanf("%f", &i);
~~ ^~
%d
.\warn.c:6:21: warning: data argument not used by format string [-Wformat-extra-args]
printf("%d", i, i ,2);
~~~~ ^
3 warnings generated.
clang -Wall --target=x86_64-w64-mingw32 .\warn.c
gcc 使用相同头文件会显示警告
gcc -Wall .\warn.c
.\warn.c: In function 'main':
.\warn.c:5:13: warning: format '%f' expects argument of type 'float *', but argument 2 has type 'int *' [-Wformat=]
5 | scanf("%f", &i);
| ~^ ~~
| | |
| | int *
| float *
| %d
.\warn.c:6:12: warning: too many arguments for format [-Wformat-extra-args]
6 | printf("%d", i, i ,2);
|
想知道有没有办法配置 clang 显示相同警告
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.