HarmonyOS NDK编译错误
代码示例:
static const char *get_top_domain(const char * const domain, size_t *outlen)
{
size_t len;
const char *first = NULL, *last;
if(!domain)
return NULL;
len = strlen(domain);
last = memrchr(domain, '.', len);
if(last) {
first = memrchr(domain, '.', (last - domain));
if(first)
len -= (++first - domain);
}
if(outlen)
*outlen = len;
return first? first: domain;
}
这段代码编译出现以下错误信息:
cookie.c:253:10: warning: call to undeclared function 'memrchr'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
last = memrchr(domain, '.', len);
^
cookie.c:253:8: error: incompatible integer to pointer conversion assigning to 'const char *' from 'int' [-Wint-conversion]
last = memrchr(domain, '.', len);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~
HarmonyOS
赞
收藏 0
回答 1
待解决
相关问题
反射是否支持,调用Reflect编译错误
1756浏览 • 1回复 待解决
HarmonyOS @Builder 按引用传递参数编译错误
55浏览 • 1回复 待解决
HarmonyOS源码编译错误 importerror:cannot import name
4741浏览 • 1回复 已解决
说一说关于SCONS的编译错误
9687浏览 • 1回复 待解决
js2java-codegen不能使用,配置jsOutputDir后编译错误
6218浏览 • 1回复 待解决
HarmonyOS ndk编译mars库失败
493浏览 • 1回复 待解决
AndroidNDK的ndk-build编译,如何使用harmonyOS实现
2800浏览 • 0回复 待解决
NDK开发是否有提供交叉编译工具
1804浏览 • 1回复 待解决
#鸿蒙通关秘籍#优化HarmonyOS NDK编译方案有什么策略?
72浏览 • 1回复 待解决
HarmonyOS RN库 TurboModule Codegen 编译类型错误
385浏览 • 2回复 待解决
LLVM编译配置错误:fatal error: 'utility' file not found
2383浏览 • 1回复 待解决
HarmonyOS 如何下载NDK
650浏览 • 1回复 待解决
#鸿蒙通关秘籍#构建HarmonyOS NDK工程过程中如何使用CMake和编译工具链
42浏览 • 1回复 待解决
通过Command line进行编译,如果发生错误,如何获取到错误信息,或者能获取到编译成功状态
97浏览 • 1回复 待解决
编译三方库报Platform/OHOS to use this system错误
1309浏览 • 1回复 待解决
HarmonyOS NDK 统库提供:boringssl
33浏览 • 1回复 待解决
如何解决DevEco Studio中类型标注错误导致的编译问题?
512浏览 • 1回复 待解决
HarmonyOS上面的NDK开发有无详细文档
4734浏览 • 2回复 待解决
HarmonyOS 工程里ndk怎么指定c++版本
647浏览 • 1回复 待解决
Ubuntu1604编译wifiiot时No option 'riscv32-unknown-elf-gcc_path' in section: 'ndk'已经安装gcc_riscv32
10817浏览 • 1回复 待解决
HarmonyOS NDK开发,使用AVPlayer 播放mp3 报错
552浏览 • 1回复 待解决
#鸿蒙通关秘籍#如何选择在HarmonyOS中使用NDK
39浏览 • 1回复 待解决
HarmonyOS NDK开发时,使用setitimer函数的精度是多少
400浏览 • 1回复 待解决
HarmonyOS NDK 如何防止别人复制我们的 so 进行逆向?
191浏览 • 1回复 待解决
HarmonyOS 错误提示如下
145浏览 • 1回复 待解决
如果c99想用的话,可以尝试使用这俩种方式。
参考链接:https://stackoverflow.com/questions/3875197/gcc-with-std-c99-complains-about-not-knowing-struct-timespec
https://stackoverflow.com/questions/69145941/why-does-clock-gettime-not-compile-when-using-c99