gpt4 book ai didi

Android 无法使用 Android.mk 将 linux 包含在 C 程序中

转载 作者:行者123 更新时间:2023-11-30 16:48:04 26 4
gpt4 key购买 nike

我正在尝试为 Android 6 编译 C 程序。这是我的 Android.mk:

APP_PLATFORM := android-23
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
# Enable PIE manually. Will get reset on $(CLEAR_VARS). This
# is what enabling PIE translates to behind the scenes.
LOCAL_CFLAGS += -fPIE -DHAVE_FANOTIFY=1 -DHAVE_SYS_FANOTIFY=0
LOCAL_LDFLAGS += -fPIE -pie
# give module name
LOCAL_MODULE := fsmon
# list your C files to compile
LOCAL_SRC_FILES := inotify.c fanotify.c util.c main.c
# this option will build executables instead of building library for android application.
include $(BUILD_EXECUTABLE)

fanotify.c 中写入以下包含内容:

#include <linux/fanotify.h>

当我尝试使用ndk-build时,出现以下错误:

fsmon/jni/fanotify.c:51:10: fatal error: 'linux/fanotify.h' file not found
#include <linux/fanotify.h>
^

header fanotify.h 存在于 ndk 路径 /Android/Sdk/ndk-bundle/sysroot/usr/include/linux

有什么建议吗?

编辑:如果我尝试包含 sys/fanotify.h

,也会出现同样的错误

最佳答案

您可以使用LOCAL_C_INCLUDES为模块指定其他包含路径。

LOCAL_C_INCLUDES :=/Android/Sdk/ndk-bundle/sysroot/usr/include/

https://developer.android.com/ndk/guides/android_mk.html#mdv

关于Android 无法使用 Android.mk 将 linux 包含在 C 程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43124522/

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