1. 问题
在源文件中该包含的地方都包含了头文件,编译时还是报"未定义引用" ? xxx.so: 对’self-define function(自定义函数)’ 未定义引用
build.make:23: recipe for target ‘xxx(可执行文件)’ failed
? 问题描述:
2. 原因
3. 解决方法
- 如果是cmake编译,需要在CMakeLists.txt中包含新增的源文件
cmake_minimum_required(VERSION 3.0)
project(main)
set(SRC_LISTS
path/to/your/file.cpp
xxx/other.cpp
)
add_library(projectLib ${SRC_LISTS})
add_executable(${PROJECT_NAME} ${SRC_LISTS})
- 如果是普通gcc/g++编译,需要将新增源文件关联起来
g++ main.cpp new.cpp -o main
- 如果是vscode task.json设置编译规则,需添加新增源文件
"args": [
"-g",
"${file}",
"${fileDirname}\\path\\to\\your\\file.cpp",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
?
参考文章: 关联新增源文件 task.json设置编译规则 常见undefined reference解决方法 ? created by shuaixio, 2021.12.12
|