我在 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 还是很陌生,因为我仍在学习基础知识,但如果有人可以帮助我,我将不胜感激。提前致谢!