gpt4 book ai didi

c - 链接使用 ICU 的程序时出错

转载 作者:太空狗 更新时间:2023-10-29 15:59:25 24 4
gpt4 key购买 nike

我有以下使用 ICU 宏来确定 UTF-8 字符串长度的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unicode/utf.h>

size_t utf8_strlen( uint8_t* str, size_t length ) {
int32_t i = 0;
int32_t result = 0;
UChar32 cur;

while( i < length ) {
U8_NEXT( str, i, length, cur );
if( cur < 0 )
return -1;
result++;
}

return result;
}

但是,当编译和链接它时

cc `icu-config --ldflags` test.c

我收到以下错误:

/tmp/ccaVwSaO.o: In function `utf8_strlen':
test.c:(.text+0x141): undefined reference to `utf8_nextCharSafeBody_48'
collect2: ld returned 1 exit status

上面的命令扩展为 cc -ldl -lm -L/usr/lib -licui18n -licuuc -licudata -ldl -lm test.c,而 libicuuc 确实有 utf8_nextCharSafeBody_48在其中定义。为什么会出现链接错误?

最佳答案

尝试:

$ cc test.c $( icu-config --ldflags )

您通常需要最后列出库。

关于c - 链接使用 ICU 的程序时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9145000/

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