gpt4 book ai didi

android - 如何使用 ndk8 在 Windows 上为 Android 构建 Openssl?

转载 作者:可可西里 更新时间:2023-11-01 13:16:51 27 4
gpt4 key购买 nike

我尝试下载 OpenSSL-Android .然后运行 ​​ndk-build,在本例中为 ndk8c。

我得到错误:

process_begin: CreateProcess(NULL, pwd, ...) failed.
d:/Development/android/android-ndk-r8d/build/gmsl/__gmsl:512: *** non-numeric second argument to `wordlist' function: ''. Stop.

当我按照 here 所述对 __gsml 应用修复时

我得到错误:

Android NDK: Your APP_BUILD_SCRIPT points to an unknown file: /Android.mk
d:/Development/android/android-ndk-r8c/build/core/add-application.mk:165: *** Android NDK: Aborting... . Stop.

或者我可以下载二进制文件吗?我基本上只需要 libcrypto.so。

这是我正在使用的 Android.mk:

LOCAL_PATH := $(call my-dir)

subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, \
crypto \
ssl \
apps \
))

include $(subdirs)

最佳答案

1.) 正如 Bad Design 正确指出的那样,__gsml 错误由以下 AndroidManifest.xml 修复

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.evotegra.aCoDriver"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="14"
android:targetSdkVersion="17"
android:maxSdkVersion="17" />

</manifest>

2.) 错误:

Android NDK: Your APP_BUILD_SCRIPT points to an unknown file: /Android.mk

是线造成的

APP_BUILD_SCRIPT := $(APP_PROJECT_PATH)/Android.mk

在 jni/Application.mk 中。在 Windows 上,变量 $APP_PROJECT_PATH 未设置,因此它在根目录中查找 Android.mk。

这可以通过将文件 jni/Application.mk 更改为以下内容来解决:

LOCAL_PATH := $(call my-dir)
NDK_TOOLCHAIN_VERSION=4.4.3
APP_PROJECT_PATH := $(shell pwd)
APP_BUILD_SCRIPT := $(LOCAL_PATH)/../Android.mk

关于android - 如何使用 ndk8 在 Windows 上为 Android 构建 Openssl?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14398053/

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