我正在尝试在 MingW32上编译Festival ,所以我可以拥有一个 Windows 二进制文件。我在他们的网站上找不到 Windows 二进制文件。谁有可以发的?
如果没有,这就是我到目前为止所拥有的。我做了 ./configure 并为它做,并有以下消息:
$ 制作 config/config:43: ../speech_tools/config/config: 没有这样的文件或目录
所以,我下载了speech_tools tar 球并得到了。./configure 和 make 是否得到:
$ 制作 config/config:156: config/systems/ix86_unknown.mak: 没有这样的文件或目录 ../config/config:156: ../config/systems/ix86_unknown.mak: 没有这样的文件或目录 制作:***没有规则来制作目标`../config/systems/ix86_unknown.mak'。停止。 config/rules/modules.mak:133: config/modincludes.inc: 没有这样的文件或目录 make --no-print-directory -C ./config MADE_FROM_ABOVE=1 MODINCLUDES=1 INCLUDE_EVERYTHING='' modincludes.inc ../config/config:156: ../config/systems/ix86_unknown.mak: 没有这样的文件或目录 make[1]: *** 没有规则来制作目标“../config/systems/ix86_unknown.mak”。停止。 make: *** [config/modincludes.inc] 错误 2
因此,我将 config/systems/ix86_CYGWIN32.mak 复制到 ix86_unknown.mak 并再次尝试。现在我收到这条消息:
g++ -c -fno-implicit-templates -O3 -Wall -Wno-non-template-friend -Wno-deprecated -DSUPPORT_EDITLINE -I../include slib.cc 在 slib.cc:85 包含的文件中: ../include/EST_unix.h:53:25: sys/wait.h: 没有这样的文件或目录 ../include/EST_unix.h:54:29: sys/resource.h: 没有这样的文件或目录 在 ../include/EST_String.h:50 包含的文件中, 来自../include/siod.h:17, 来自 slib.cc:88: ../include/EST_iostream.h:54:26: strstream.h: 没有这样的文件或目录 在 ../include/EST_TList.h:50 包含的文件中, 来自../include/EST_string_aux.h:43, 来自../include/siod.h:18, 来自 slib.cc:88:
我从哪里获得 sys/wait.h、sys/resource.h 和 strstream.h?我宁愿不必在 Cygwin 中尝试这一切并随身携带那些烦人的 DLL。有什么建议吗?