其他分享
首页 > 其他分享> > 无法在Android上编译avahi

无法在Android上编译avahi

作者:互联网

我是交叉编译的新手,我被分配了使用Android补丁http://avahi.org/ticket/354将avahi核心编译为android的任务.
ndk-build avahi-configure V = 1成功,但是当我运行时:ndk-build V = 1 NDK_LOG = 2 APP_ABI =“ armeabi armeabi-v7a”,它发出大量警告,并且在socket.o上也会出错.

任何建议都欢迎.

错误:
    / home / ruoruo / Software / android-
ndk-r8b / platforms / android-14 / arch-arm /usr/include / linux / if.h:85:12:警告:枚举数列表末尾的逗号[-pedantic]
    /home/ruoruo/Software/android-ndk-r8b/platforms/android-14/arch-arm/usr/include/linux/if.h:90:22:警告:枚举数列表末尾的逗号[-pedantic]
    /home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:68:8:错误:“ struct in6_pktinfo”的重新定义
    / home / ruoruo / Software / android-ndk-r8b / platforms / android-14 / arch-arm /usr/include / linux /ipv6.h:21:8:注意:最初在此处定义
/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:在函数“ avahi_mdns_mcast_join_ipv6”中:
/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:150:64:警告:未使用的参数’a'[-Wunused-parameter]
/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:在函数“ avahi_recv_dns_packet_ipv4”中:
/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:647:9:警告:设置了变量’found_addr’但未使用[-Wunused-but-set-variable ]
/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:在函数“ avahi_recv_dns_packet_ipv6”中:
/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:809:24:警告:设置了变量’found_iface’但未使用[-Wunused-but-set-variable ]
/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni/avahi-core/socket.c:809:9:警告:设置了变量’found_ttl’但未使用[-Wunused-but-set-variable ]
制作:* [/home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/obj/local/armeabi/objs/avahi-core/socket.o]错误1

这是我的Android.mk

LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)

AVAHI_TOP := /home/ruoruo/Software/android-ndk-r8b/samples/avahi_exports/jni
CONFIGURE := configure
CONFIGURE_LDFLAGS := -lc -ldl

AVAHI_BUILT_SOURCES := \
    avahi-common/Android.mk \
    avahi-core/Android.mk \
    avahi-client-uninstalled.pc \
    avahi-client/Android.mk \
    avahi-utils/Android.mk \
    avahi-glib/Android.mk \
    avahi-glib-uninstalled.pc \
    avahi-gobject/Android.mk \
    avahi-gobject-uninstalled.pc \
    avahi-daemon/Android.mk

avahi-configure-real:
    cd $(AVAHI_TOP) ; \
#    CC="$(CONFIGURE_CC)" \
#    CFLAGS="$(CONFIGURE_CFLAGS)" \
#    LD=$(TARGET_LD) \
    LDFLAGS="$(CONFIGURE_LDFLAGS)" \
#    CPP=$(CONFIGURE_CPP) \
#    CPPFLAGS="$(CONFIGURE_CPPFLAGS)" \
#    PKG_CONFIG_LIBDIR=$(CONFIGURE_PKG_CONFIG_LIBDIR) \17
#    PKG_CONFIG_TOP_BUILD_DIR=$(PKG_CONFIG_TOP_BUILD_DIR) \
    $(AVAHI_TOP)/$(CONFIGURE) --host=arm-linux-androideabi \
    --disable-nls --disable-gtk --disable-gtk3 \
    --disable-dbus --disable-python \
    --disable-xmltoman --with-xml=none \
    --disable-glib --disable-gobject --disable-qt3 --disable-qt4 \
    --disable-gdbm --disable-libdaemon \
    --with-distro=none --disable-core-docs \
    --disable-Werror
    echo "before make file"
    for file in $(AVAHI_BUILT_SOURCES); do \
       rm -f $$file && \
        make -C $$(dirname $$file) $$(basename $$file) ; \
    done

    avahi-configure: avahi-configure-real

    .PHONY: avahi-configure

    CONFIGURE_TARGETS += avahi-configure

    #include all the subdirs...
    #-include $(AVAHI_TOP)/avahi-common/Android.mk
    #-include $(AVAHI_TOP)/avahi-client/Android.mk
    -include $(AVAHI_TOP)/avahi-core/Android.mk
    #-include $(AVAHI_TOP)/avahi-daemon/Android.mk
    #-include $(AVAHI_TOP)/avahi-glib/Android.mk
    #-include $(AVAHI_TOP)/avahi-gobject/Android.mk
    #-include $(AVAHI_TOP)/avahi-utils/Android.mk

#generate libavahi.so and libavahi.a
LOCAL_MODULE    := avahi_static
LOCAL_MODULE_FILENAME := libavahi
-include $(BUILD_STATIC_LIBRARY)

LOCAL_MODULE    := avahi_shared
LOCAL_MODULE_FILENAME := libavahi
-include $(BUILD_SHARED_LIBRARY)

解决方法:

您下载的补丁不是最新的.最新的NDK r8b包含文件linux / ipv6.h,该文件在NDK的早期版本中找不到.不幸的是,对NDK的这种更改(尽管如此)从未被记录下来.

这意味着您必须通过删除以下行来撤消对socket.c文件的修补程序

67  #ifdef __BIONIC__ 
68  struct in6_pktinfo { 
69      struct in6_addr ipi6_addr; 
70      int ipi6_ifindex; 
71  }; 
72  #endif 
73   

从avahi-core / socket.c文件中.

标签:android-ndk,cross-compiling,android
来源: https://codeday.me/bug/20191127/2075334.html