如何在 C++ 中链接节日 TTS 库使用 g++ 的程序
提供的手册中
我正在使用 Festival c++ Api,但在 http://www.cstr.ed.ac.uk/projects/festival/manual/festival_28.html#SEC132
说要链接festival/src/lib/libFestival.a等。 所以请告诉我如何将它们与我的 C++ 程序链接
i am using Festival c++ Api but in the manual provided at
http://www.cstr.ed.ac.uk/projects/festival/manual/festival_28.html#SEC132
saying to link festival/src/lib/libFestival.a etc.
so please tell me hw to link them with my c++ programme
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 g++ 链接静态库的最简单方法就是在命令行上使用完整路径命名库:
其中 /myinstall 是安装库的位置。您还可以使用 -L 和 -l 标志指定路径和库:
The simplest way to link a static library from g++ is simply to name the library on the command line, using the complete path:
where /myinstall is wherever you installed the libraries. You can also specify the path and the library with the -L and -l flags:
我假设您将 file.cpp 放在包含从包中提取的festival和speech_tools的目录中。
编译:
g++ yourFile.cpp -o yourFile -I./festival/src/include -I./speech_tools/include -L./festival/src/lib -lFestival -L./speech_tools/lib/ -lestools -lestbase -leststring
I assume that you put your file.cpp in the directory containing festival and speech_tools which are extracted from packages.
compile:
g++ yourFile.cpp -o yourFile -I./festival/src/include -I./speech_tools/include -L./festival/src/lib -lFestival -L./speech_tools/lib/ -lestools -lestbase -leststring