gpt4 book ai didi

c++ - AOSP - 错误 : undefined reference to during build

转载 作者:行者123 更新时间:2023-12-01 14:48:03 29 4
gpt4 key购买 nike

我需要另一个有眼光的人来告诉我我在这里做错了什么。

我不得不在我的设备上升级 U-boot 引导加载程序,自然我不得不让一切重新适应。但目前我无法像以前那样构建我的 AOSP 系统。我将从错误消息开始并写下我的思考过程:

target Symbolic: fw_printenv (out/target/product/board/symbols/system/bin/fw_printenv)
target Strip: fw_printenv (out/target/product/board/obj/EXECUTABLES/fw_printenv_intermediates/fw_printenv)
Install: out/target/product/board/system/bin/fw_printenv
target Executable: test_executer (out/target/product/board/obj/EXECUTABLES/test_executer_intermediates/LINKED/test_executer)
external/utils/production/set_display_orientation.cpp:81: error: undefined reference to 'fw_printenv(int, char**, int, env_opts*)'
external/utils/production/set_display_orientation.cpp:57: error: undefined reference to 'fw_setenv(int, char**, env_opts*)'
external/utils/production/set_display_orientation.cpp:65: error: undefined reference to 'fw_printenv(int, char**, int, env_opts*)'
collect2: error: ld returned 1 exit status

所以是链接器错误。而且我的代码找不到另一个模块中定义的函数。那么我们来看看 安卓.mk 负责 的文件set_display_orientation.cpp .
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := test_executer
LOCAL_SRC_FILES := test_executer.cpp \
TestSequences.cpp \
buzzer_test.cpp \
rtc_test.cpp \
AudioTests.cpp \
rs485_test.cpp \
rs232.cpp \
set_display_orientation.cpp \
gpio.cpp \
gpio_helper.c \
ping.cpp \
usb.cpp \
mmc.cpp \
display.cpp \
touchscreen.cpp \
productionSector.cpp \
psoc_uart3.cpp \
../../tslib/tests/fbutils.c

LOCAL_MODULE_TAGS := optional

LOCAL_STATIC_LIBRARIES += libfw libeeprom libpsoc_helper

LOCAL_SHARED_LIBRARIES += libts libc libcutils

LOCAL_C_INCLUDES += bootable/bootloader/uboot-imx/tools/env \
external/tslib \
external/tslib/tests \
external/tslib/src \
external/utils/eeprom \
external/utils/PSoCUpdate
ifneq ($(PTEST_VERSION),)
LOCAL_CFLAGS := -DPTEST_VERSION=$(PTEST_VERSION)
endif


LOCAL_CFLAGS += -DUSE_HOSTCC \
-DANDROID \
-isystem bootable/bootloader/uboot-imx/include/ \
-isystem bootable/bootloader/uboot-imx/arch/arm/include/

include $(BUILD_EXECUTABLE)

现在错误消息说有一个 未定义对 fw_printenv()、fw_setenv() 和 fw_printenv() 的引用 .但是这些函数是在 中定义的。可启动/引导加载程序/uboot-imx/tools/env 包含在 LOCAL_C_INCLUDES += bootable/bootloader/uboot-imx/tools/env 中它们是 LOCAL_STATIC_LIBRARIES += libfw 的一部分.为了完整起见,我还将包括 安卓.mk 负责 的文件库 这是 U-Boot 的一部分。
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := fw_printenv

LOCAL_SRC_FILES := fw_env_main.c

LOCAL_C_INCLUDES += fw_env.h
LOCAL_STATIC_LIBRARIES := libfw

LOCAL_CFLAGS := -DUSE_HOSTCC \
-DANDROID \
-isystem$(LOCAL_PATH)/../../include/ \
-isystem$(LOCAL_PATH)/../../arch/arm/include/


include $(BUILD_EXECUTABLE)

include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE:= libfw


LOCAL_SRC_FILES := fw_env.c \
ctype.c \
crc32.c \
env_attr.c \
env_flags.c \
aes.c
#since alot of duplicated Header files exist in uboot-imx/include/ we use -isystem here
#to search for the correct Headers in bionic first
LOCAL_CFLAGS := -DUSE_HOSTCC \
-DANDROID \
-isystem$(LOCAL_PATH)/../../include/ \
-isystem$(LOCAL_PATH)/../../arch/arm/include/

LOCAL_C_INCLUDES += fw_env.h \
external/mtd-utils/new-utils/include/

include $(BUILD_STATIC_LIBRARY)

有人可以指出我在这里出错的地方。我已经浏览了在线文档( https://developer.android.com/ndk/guides/android_mk),以及上下stackoverflow。我真的迷失了这个。

最佳答案

Android.mk可以看出对于 libfw,它是一个 C 库,而您的代码是 C++。 C 和 C++ 具有不同的 ABI,因此链接器无法将您在 C++ 代码中调用的函数与 C 库中定义的函数进行匹配。为防止出现此问题,请使用以下 header :

extern "C" {
#include "header_from_libfw.h"
}

这将指示 C++ 编译器将此头文件中定义的函数使用 C-ABI,以便在链接期间可以将它们与 C 库中定义的函数进行匹配。具体来说,这会禁用 C++ 风格的名称修饰 ( reference)。

关于c++ - AOSP - 错误 : undefined reference to <function-name> during build,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61423835/

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