undefined reference to `cec14_test_func(double*, double*, int, int, int)' 怎么解决
时间: 2024-06-09 11:10:30 浏览: 97
cec14_func.cpp
这个错误是链接错误,意味着编译器找不到 `cec14_test_func` 函数的实现。有几种可能的原因:
1. 没有正确地包含头文件,即没有包含声明 `cec14_test_func` 函数的头文件。
2. 没有将实现 `cec14_test_func` 函数的源文件编译成目标文件并与主程序链接。
3. 如果 `cec14_test_func` 函数是在库文件中实现的,则可能需要将该库文件与主程序链接。
你需要检查你的代码和编译命令来解决这个问题。
阅读全文