gpt4 book ai didi

linux - 无法编译 .c,因为它找不到 .h 文件

转载 作者:行者123 更新时间:2023-12-04 07:22:47 28 4
gpt4 key购买 nike

我在 ubuntu 18.04 上,我正在尝试编译一个 .c 文件,该文件带有我正在使用的 API vosk .
问题是 python 代码没有任何问题,但如果我尝试

gcc test_vosk.c -o test_vosk
他们提供的用于运行 API 的 .c 文件给了我这个错误:
test_vosk.c:1:10: fatal error: vosk_api.h: No such file or directory
#include <vosk_api.h>
^~~~~~~~~~~~
compilation terminated.
所以我试图 make与 test_vosk.c 文件位于同一目录中的 Makefile 但它给了我:
g++ test_vosk.o -o test_vosk -L../src -lvosk -ldl -lpthread -Wl,-rpath=../src
/usr/bin/ld: cannot find -lvosk
collect2: error: ld returned 1 exit status
Makefile:8: recipe for target 'test_vosk' failed
make: *** [test_vosk] Error 1
这是有道理的,因为目录/usr/bin/ld 实际上并不存在于我的机器上。
然后我尝试将 vosk_api.h 文件从它的目录(它是 test_vosk.c 所在目录的父目录)移动到 test_vosk.c 文件的同一目录并更改
#include <vosk_api.h>
#include "vosk_api.h"
现在如果我再次编译
gcc test_vosk.c -o test_vosk
它给了我:
/tmp/cct4dVqp.o: In function `main':
test_vosk.c:(.text+0x22): undefined reference to `vosk_model_new'
test_vosk.c:(.text+0x40): undefined reference to `vosk_recognizer_new'
test_vosk.c:(.text+0xc7): undefined reference to `vosk_recognizer_accept_waveform'
test_vosk.c:(.text+0xe5): undefined reference to `vosk_recognizer_result'
test_vosk.c:(.text+0xfe): undefined reference to `vosk_recognizer_partial_result'
test_vosk.c:(.text+0x12c): undefined reference to `vosk_recognizer_final_result'
test_vosk.c:(.text+0x143): undefined reference to `vosk_recognizer_free'
test_vosk.c:(.text+0x152): undefined reference to `vosk_model_free'
collect2: error: ld returned 1 exit status
我已经被困在这个问题上好几天了,我真的不知道该去哪里,我对 linux 还是很陌生,因为我仍在学习基础知识,但如果有人能帮助我,我将不胜感激。
提前致谢!

最佳答案

感谢两位的解答!!!!
所以 test_vosk.c 无法编译,因为它找不到 libvosk.so 所以我找到了 prebuilt binary把它放到/lib目录下然后运行make来自编译它的 test_vosk.c 的同一目录中的 makefile ......
但是现在它无法运行,这让我像同一个脚本一样发疯,但在 python 中运行没有问题。
我将打开一个新问题,以便解决这个问题。

关于linux - 无法编译 .c,因为它找不到 .h 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68389868/

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