gpt4 book ai didi

Android native 构建错误可能不安全 [-Werror,-Wformat-security]

转载 作者:行者123 更新时间:2023-11-30 00:45:03 25 4
gpt4 key购买 nike

<分区>

我正在使用 CMake 开发一些原生 android 项目。我遇到上述错误的地方。

我已经创建了一个从 c 文件记录日志的方法。

void log_android(int prio, const char *fmt, ...) {
if (prio >= loglevel) {
char line[1024];
va_list argptr;
va_start(argptr, fmt);
vsprintf(line, fmt, argptr);
__android_log_print(prio, TAG, line);
va_end(argptr);
}
}

编译时我在 __android_log_print(prio, TAG, line);line 附近遇到问题 String is not String literal

它说它的可能不安全 [-Werror,-Wformat-security]在做了一些研发之后,我发现我需要在 CMAKE 中使用某些 cppFlagsAPP_CFLAGS += -Wno-error=format-security。但我不确定我应该将此代码放在 CMakeLists.txt 中的什么位置。

我尝试在 CMakeLists.txt 中使用这些方法

set(compiler_c_flags "-Wno-error=format-security")
set(compiler_cpp_flags "-Wno-error=format-security")

但是没有成功请帮忙。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com