android - jni/Android.mk :8:curlLib/packages/Android/Android. mk: 没有那个文件或目录

标签 android c++ c curl android-ndk

我从来没有用 Android 构建过 curl。

先决条件:我正在使用 Android Studio 2.1.2 我正在使用 NDK ,非实验性方式 我在 curlLib 目录的 jni 文件夹中有 curl-7.49.1 库的源代码 ExtLibCurl 是我的应用程序 jni 文件夹中的文件夹/目录,其中包含从下载的源代码 https://android.googlesource.com/platform/external/curl/+/e6f2b03027b5feb92b30f5d47801ec3fabe9fd95

可以检查 Android.mk 中的 cURL 和其他文件。

根据问题中的评论更新文件。

以下是我的Android.mk文件

JNI_DIR := $(call my-dir)

LOCAL_PATH:= $(JNI_DIR)
include $(CLEAR_VARS)

include $(LOCAL_PATH)/ExtLibCurl/Android.mk

# Build main library as shared library.
LOCAL_PATH := $(JNI_DIR)
include $(CLEAR_VARS)

LOCAL_C_INCLUDES := $(LOCAL_PATH)
LOCAL_C_INCLUDES += $(LOCAL_PATH)/ExtLibCurl/include/curl
LOCAL_C_INCLUDES += $(LOCAL_PATH)/ExtLibCurl/lib

FILE_LIST += $(wildcard $(LOCAL_PATH)/ExtLibCurl/src/*.c)

LOCAL_MODULE := ndksampleapp
LOCAL_SRC_FILES := $(FILE_LIST:$(LOCAL_PATH)/%=%)

LOCAL_STATIC_LIBRARIES := ExtLibCurl

include $(BUILD_SHARED_LIBRARY)

应用程序.mk

APP_ABI := all
APP_STL    := gnustl_static
APP_CFLAGS += -std=gnu++11
APP_OPTIM  := debug
LOCAL_CPP_FEATURES += exceptions

NDK_TOOLCHAIN_VERSION := 4.9

我构建 curl 的 Android.mk 的方式是否正确?

当我在 src\main 路径中执行 ndk-build 时,出现以下错误

    [arm64-v8a] Compile        : ndksampleapp <= curlutil.c
cc1.exe: warning: command line option '-std=gnu++11' is valid for C++/ObjC++ but not for C
In file included from jni/ExtLibCurl/lib/strdup.h:24:0,
                 from jni/ExtLibCurl/src/setup.h:206,
                 from jni/ExtLibCurl/src/curlutil.c:23:
jni/ExtLibCurl/lib/setup.h:120:28: fatal error: curl/curlbuild.h: No such file or directory
 #include <curl/curlbuild.h>
                            ^
compilation terminated.
make: *** [obj/local/arm64-v8a/objs-debug/ndksampleapp/ExtLibCurl/src/curlutil.o] Error 1

如果我删除 FILE_LIST += $(wildcard $(LOCAL_PATH)/ExtLibCurl/src/*.c),则不会构建任何 cURL 文件。

最佳答案

您的 Android.mk 文件应如下所示:

JNI_DIR := $(call my-dir)

LOCAL_PATH:= $(JNI_DIR)
include $(CLEAR_VARS)

include $(LOCAL_PATH)/ExtLibCurl/Android.mk

# Build main library as shared library.
LOCAL_PATH := $(JNI_DIR)
include $(CLEAR_VARS)

LOCAL_C_INCLUDES += $(LOCAL_PATH)/ExtLibCurl/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/ExtLibCurl/lib

# !!! place list of YOUR sources to this variable !!!
FILE_LIST += $(wildcard $(LOCAL_PATH)/src/*.c) 

LOCAL_MODULE := ndksampleapp
LOCAL_SRC_FILES := $(FILE_LIST:$(LOCAL_PATH)/%=%)

LOCAL_STATIC_LIBRARIES := libcurl
LOCAL_LDLIBS += -lz

include $(BUILD_SHARED_LIBRARY)

模块的名称不需要与其目录名称匹配。

ExtLibCurl/Android.mk 中,您必须取消注释 BUILD_STATIC_LIBRARY 部分,您还可以通过创建可执行文件 curl(第 74 行以上)删除所有部分,即文件将如下所示:

# Google Android makefile for curl and libcurl
#
# Place the curl source (including this makefile) into external/curl/ in the
# Android source tree.  Then build them with 'make curl' or just 'make libcurl'
# from the Android root. Tested with Android 1.5
#
# Note: you must first create a curl_config.h file by running configure in the
# Android environment. The only way I've found to do this is tricky. Perform a
# normal Android build with libcurl in the source tree, providing the target
# "showcommands" to make. The build will eventually fail (because curl_config.h
# doesn't exist yet), but the compiler commands used to build curl will be
# shown. Now, from the external/curl/ directory, run curl's normal configure
# command with flags that match what Android itself uses. This will mean
# putting the compiler directory into the PATH, putting the -I, -isystem and
# -D options into CPPFLAGS, putting the -m, -f, -O and -nostdlib options into
# CFLAGS, and putting the -Wl, -L and -l options into LIBS, along with the path
# to the files libgcc.a, crtbegin_dynamic.o, and ccrtend_android.o. Remember
# that the paths must be absolute since you will not be running configure from
# the same directory as the Android make.  The normal cross-compiler options
# must also be set.
#
# The end result will be a configure command that looks something like this
# (the environment variable A is set to the Android root path):
#
#  A=`realpath ../..` && \
#  PATH="$A/prebuilt/linux-x86/toolchain/arm-eabi-X/bin:$PATH" \
#  ./configure --host=arm-linux CC=arm-eabi-gcc \
#  CPPFLAGS="-I $A/system/core/include ..." \
#  CFLAGS="-fno-exceptions -Wno-multichar ..." \
#  LIB="$A/prebuilt/linux-x86/toolchain/arm-eabi-X/lib/gcc/arm-eabi/X\
#  /interwork/libgcc.a ..." \
#
# Dan Fandrich
# September 2009
LOCAL_PATH:= $(call my-dir)
common_CFLAGS := -Wpointer-arith -Wwrite-strings -Wunused -Winline -Wnested-externs -Wmissing-declarations -Wmissing-prototypes -Wno-long-long -Wfloat-equal -Wno-multichar -Wsign-compare -Wno-format-nonliteral -Wendif-labels -Wstrict-prototypes -Wdeclaration-after-statement -Wno-system-headers -DHAVE_CONFIG_H
#########################
# Build the libcurl library
include $(CLEAR_VARS)
include $(LOCAL_PATH)/lib/Makefile.inc
CURL_HEADERS := \
    curlbuild.h \
    curl.h \
    curlrules.h \
    curlver.h \
    easy.h \
    mprintf.h \
    multi.h \
    stdcheaders.h \
    typecheck-gcc.h \
    types.h
LOCAL_SRC_FILES := $(addprefix lib/,$(CSOURCES))
LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/include \
    external/openssl/include \
    external/zlib
LOCAL_CFLAGS += $(common_CFLAGS)
LOCAL_COPY_HEADERS_TO := libcurl/curl
LOCAL_COPY_HEADERS := $(addprefix include/curl/,$(CURL_HEADERS))
#LOCAL_SHARED_LIBRARIES := libz
LOCAL_MODULE:= libcurl
include $(BUILD_STATIC_LIBRARY)

关于android - jni/Android.mk :8:curlLib/packages/Android/Android. mk: 没有那个文件或目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39202545/

相关文章:

c - 动态阵列打印

python - 如何将 Python 程序(在 PC 上)连接到 Android 应用程序(在手机上)?

c++ - 当我找到行尾时如何停止阅读

C - 跟踪网络事件 - Lib pcap

C : How to make the size of an array dynamic?

c++ - 实时更改纹理sdl

Android AlarmManager 在重启后继续/从 RecentTaskManager 中删除

android - 如何将 my/data 文件夹从 RO 变为 RW?

java - Retrofit 无法正确解析 body

c++ - 在 Vista 上更新 KB3059317 后,MFC 程序挂起 : broken Comctl32. dll?