gpt4 book ai didi

android - 如何让 Android 使用 ZeroMQ libzmq?

转载 作者:行者123 更新时间:2023-12-02 10:32:58 26 4
gpt4 key购买 nike

我尝试将程序从 Linux 桌面移植到 Android。它使用 libzmq在 C++ 中。

我想使用 zmq.hpp (ZeroMQ 的 Cpp 绑定(bind))在没有 jerozmq 的应用程序的 native 代码中或 jzmq .

我已经建立 libzmq使用此脚本的 4 拱门:

export PATH=/home/hmi/Android/arm-26-toolchain-clang:$PATH

rm -r /tmp/zeromq-android
cd /tmp/
#git clone https://github.com/zeromq/libzmq.git
cd libzmq/

############################################################################
# arm-linux-androideabi
export OUTPUT_DIR=/tmp/zeromq-android/arm-linux-androideabi
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=arm-linux-androideabi \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install

############################################################################
# armv7a-linux-androideabi
export OUTPUT_DIR=/tmp/zeromq-android/armeabi-v7a
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=armv7a-linux-androideabi \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install

############################################################################
# aarch64-linux-android
export OUTPUT_DIR=/tmp/zeromq-android/arm64-v8a
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=aarch64-linux-android \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install

############################################################################
# i686-linux-android
export OUTPUT_DIR=/tmp/zeromq-android/x86
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=i686-linux-android \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install

############################################################################
# x86_64-linux-android
export OUTPUT_DIR=/tmp/zeromq-android/x86_64
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=x86_64-linux-android \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install

cd /tmp/zeromq-android/
mkdir all
cd all

for i in \
"armeabi-v7a" \
"arm64-v8a" \
"x86" \
"x86_64"
do
mkdir ${i}
cp -r /tmp/zeromq-android/$i/lib/* ./$i/
done





############################################################################
## jzmq
#export OUTPUT_DIR=/tmp/zeromq-android-arm-linux-androideabi
#
#cd /tmp/
#git clone https://github.com/zeromq/jzmq.git
#cd jzmq/jzmq-jni/
#./autogen.sh
#./configure --host=arm-linux-androideabi \
# --prefix=$OUTPUT_DIR \
# --with-zeromq=$OUTPUT_DIR \
# CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
# LDFLAGS="-L$OUTPUT_DIR/lib" \
# --disable-version \
# LIBS="-lpthread -lrt"
#make
#make install}

那可能吗?

当链接 native-lib.cpp static 和 libzmq static 时,构建是好的,但它卡在:

Runtime.error.loadingLib(native-lib)



当在 native-lib shared 和 libzmq static 中链接时,构建会停留在:

/home/hmi/barepo/AndroidCppZmq/app/src/main/cpp/include/zmq.hpp:766: error: undefined reference to 'zmq_ctx_destroy'



我已添加 libzmq CMakeList.txt add_library(zmq STATIC .../libzmq.a)

最佳答案

谢谢你的回复。因此,现在我想使用 Android 虚拟设备(Pixel C API 28)进行测试,并在 Android-Studio 中使用 c++ 代码创建了一个新项目。

摆脱cppzmq我只使用 libzmq 现在。
我已经建立 libzmq 使用以下脚本:

#!/bin/bash

OLDPATH=$PATH

rm -r /tmp/zeromq-android
cd /tmp/
git clone https://github.com/zeromq/libzmq.git
cd libzmq/

export NDK=$HOME/initEnvV0.0/AndroidSdk/ndk/21.0.6113669
export TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64

# Only choose one of these, depending on your device...
#export TARGET=aarch64-linux-android
#export TARGET=armv7a-linux-androideabi
#export TARGET=i686-linux-android
export TARGET=x86_64-linux-android

# Set this to your minSdkVersion.
export API=28

# Configure and build.
export AR=$TOOLCHAIN/bin/$TARGET-ar
export AS=$TOOLCHAIN/bin/$TARGET-as
export CC=$TOOLCHAIN/bin/$TARGET$API-clang
export CXX=$TOOLCHAIN/bin/$TARGET$API-clang++
export LD=$TOOLCHAIN/bin/$TARGET-ld
export RANLIB=$TOOLCHAIN/bin/$TARGET-ranlib
export STRIP=$TOOLCHAIN/bin/$TARGET-strip

export OUTPUT_DIR=/tmp/zeromq-android/$TARGET
./autogen.sh
#./configure --host $TARGET
./configure --enable-static \
--disable-shared \
--host=$TARGET \
--prefix=$OUTPUT_DIR LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc" # ^ was missing
make
make install

将构建好的库复制到 jniFolder 后,我的目录如下所示:
src/main/jniLibs/
└── x86_64
├── bin
│   └── curve_keygen
├── include
│   ├── zmq.h
│   └── zmq_utils.h
└── lib
├── libzmq.a
├── libzmq.la
├── libzmq.so
└── pkgconfig
└── libzmq.pc

我已将此添加到 native-lib.cpp :
// libzmq
#include <zmq.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>

int testlibzmq (void)
{
// Socket to talk to clients
void *context = zmq_ctx_new ();
void *responder = zmq_socket (context, ZMQ_REP);
int rc = zmq_bind (responder, "tcp://*:5555");
assert (rc == 0);

char buffer [10];
zmq_recv (responder, buffer, 10, 0);
printf ("Received Hello\n");
sleep (1); // Do some 'work'
zmq_send (responder, "World", 5, 0);

return 0;
}

我的 CMakelist.txt看起来像这样:
# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.4.1)

# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.

include_directories(
/home/hmi/barepo/AndroidCppZmq/app/src/main/jniLibs/x86_64/include
)

add_library( zmq STATIC IMPORTED )
set_target_properties( zmq PROPERTIES IMPORTED_LOCATION /home/hmi/barepo/AndroidCppZmq/app/src/main/jniLibs/x86_64/lib/libzmq.a )
set_target_properties( zmq PROPERTIES INCLUDE_DIRECTORIES /home/hmi/barepo/AndroidCppZmq/app/src/main/jniLibs/x86_64/include )

add_library( native-lib # Sets the name of the library.
SHARED # Sets the library as a shared library.
native-lib.cpp # Provides a relative path to your source file(s).
)

# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.

find_library( log-lib # Sets the name of the path variable.
log # Specifies the name of the NDK library that
) # you want CMake to locate.

# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.

target_link_libraries( native-lib # Specifies the target library.
zmq # Links the target library to the log library
${log-lib} # included in the NDK.
)

我是否必须生成 Android.mkApplication.mk我的 jniLibs-Folder 旁边的文件?有没有人尝试使用 libzmq在没有 jzmq 的 native 代码中或 Jeromq ?

在链接共享 native-lib 时构建卡顿:
Entering directory `/home/hmi/barepo/AndroidCppZmq/app/.cxx/cmake/debug/x86_64'
[1/1] Linking CXX shared library /home/hmi/barepo/AndroidCppZmq/app/build/intermediates/cmake/debug/obj/x86_64/libnative-lib.so
FAILED: /home/hmi/barepo/AndroidCppZmq/app/build/intermediates/cmake/debug/obj/x86_64/libnative-lib.so

关于android - 如何让 Android 使用 ZeroMQ libzmq?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61598918/

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