gpt4 book ai didi

android - 为 ARM :./.libs/libprotoc.so 交叉编译 protobuf 时出错:错误:未定义对“描述符”的引用

转载 作者:行者123 更新时间:2023-12-04 03:56:35 26 4
gpt4 key购买 nike

为 ARM 交叉编译 protobuf 时出错
编译脚本:

  1 #!/bin/sh
2
3 export PREFIX=$HOME/soft/protobuf_arm/
4 CLANG_TOOLCHAIN=$HOME/soft/arm-29-toolchain-clang
5 export PATH=$CLANG_TOOLCHAIN/bin:$PATH
6 export SYSROOT=$CLANG_TOOLCHAIN/sysroot
7 export CC="armv7a-linux-androideabi29-clang --sysroot $SYSROOT"
8 export CXX="armv7a-linux-androideabi29-clang++ --sysroot $SYSROOT"
9
10 cd $HOME/github/c++/protobuf
11 make clean
12 ./autogen.sh
13 ./configure --prefix=$PREFIX \
14 --host=armv7a-linux-androideabi29 \
15 --with-sysroot="${SYSROOT}" \
16 --enable-shared \
17 --enable-cross-compile \
18 --with-protoc=$HOME/soft/protobuf_linux/protoc \
19 CFLAGS="-march=armv7-a -D__ANDROID_API__=29" \
20 CXXFLAGS="-frtti -fexceptions -march=armv7-a -D__ANDROID_API__=29" \
21 LIBS="-llog -lz -lc++_static"
22 make -j 12
23 make install
configure没有错误,make有错误:
In file included from google/protobuf/compiler/csharp/csharp_source_generator_base.cc:39:
./google/protobuf/compiler/csharp/csharp_source_generator_base.h:62:25: warning: private field 'descriptor_' is not used [-Wunused-private-field]
const FileDescriptor* descriptor_;
^
1 warning generated.
CXXLD libprotoc.la
clang90++: warning: argument unused during compilation: '-pthread' [-Wunused-command-line-argument]
clang90++: warning: argument unused during compilation: '-pthread' [-Wunused-command-line-argument]
CXXLD protoc
./.libs/libprotoc.so: error: undefined reference to 'descriptor_table_google_2fprotobuf_2fdescriptor_2eproto'
./.libs/libprotoc.so: error: undefined reference to 'scc_info_FileDescriptorProto_google_2fprotobuf_2fdescriptor_2eproto'
clang90++: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [Makefile:3883: protoc] Error 1
make[2]: Leaving directory '/home/sen/github/c++/protobuf/src'
make[1]: *** [Makefile:1866: all-recursive] Error 1
make[1]: Leaving directory '/home/sen/github/c++/protobuf'
make: *** [Makefile:1773: all] Error 2
环境
Linux x 5.6.15-arch1-1
GNU Make 4.3
NDK (Side by side) 21.1.6352462
protobuf v3.13.0
有意思的是,虽然报错了,但是在protobuf/src/.libs下得到了.so等库文件。

最佳答案

在 Linux (debian 4.19.0-16-amd64) 上为 armv7a-linux-androideabi 编译时,我也遇到了这个错误
正如您所说,“没关系”,因为库是在 src/.libs 中创建的他们似乎工作正常(至少 libprotobuf.so )
使用旧版本的 ndk-r21 (Pkg.Revision = 21.0.6113669) 没有问题
我最近更新到最新的 ndk-r21e (21.4.7075529),我发现这是问题所在......
PS:这不会发生在 aarch64-linux-android 上。
这是一个链接on Qt forum on the topic .
感兴趣的 friend ,here is my compile script构建 x86_64 版本以及 Android 32 和 64 位。

关于android - 为 ARM :./.libs/libprotoc.so 交叉编译 protobuf 时出错:错误:未定义对“描述符”的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63779557/

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