Cygwin / VIM配置:缺少终端库(例如ncurses)

时间:2017-11-06 21:46:46

标签: c++ vim terminal cygwin

我现在已经在这个问题上工作了6个小时,但我仍然想不出更多,比我现在的命令(在查看在线解决方案和解决其他有这个问题的穷人后)。 / p>

我尝试在安装了python3和mingw32的Windows + Cygwin上构建vim编辑器(默认命令为g ++,c ++,...所有对特定命令的引用,如'i686-w64-mingw32-c ++')

和其他许多人一样,我遇到了错误,即终端库缺失(例如ncurses)。

经过几个小时的尝试配置vim项目后,我仍然陷入困境。 我已经尝试过:

  • 将工具链更改为cygwin包(切换回自定义mingw32安装)
  • 安装了不同版本的ncurses(将库复制到不同位置 / usr / lib / usr / local / lib / lib
  • 多次以不同方式编写 ./ configure 命令

我当前的配置声明:

LD_LIBRARY_PATH=/cygdrive/d/developtools/mingw32/lib ./configure 
    --with-features=huge \
    --enable-multibyte \
    --enable-python3interp=yes \
    --with-python3-config-dir=/usr/lib/python3.6/config-3.6m-x86_64-cygwin \
    --enable-cscope \
    --with-tlib=ncurses

我当前的config.log文件的一部分

configure:11342: result: no
configure:11348: checking --with-tlib argument
configure:11357: result: ncurses
configure:11360: checking for linking with ncurses library
configure:11373: gcc -o conftest.exe -g -O2   -L/usr/local/lib conftest.c  -lncurses >&5
configure:11373: $? = 0
configure:11374: result: OK
configure:11477: checking for tgetent()
configure:11490: gcc -o conftest.exe -g -O2   -L/usr/local/lib conftest.c  -lncurses >&5
conftest.c: In function 'main':
conftest.c:49:26: warning: implicit declaration of function 'tgetent' [-Wimplicit-function-declaration]
 char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist");
                          ^~~~~~~

我一直在想,如果刚出现相同的错误消息(需要终端库),因为tgetent的声明(或定义)似乎有问题。

最后仍然是相同的错误消息

configure:11494: error: NOT FOUND!
      You need to install a terminal library; for example ncurses.
      Or specify the name of the library with --with-tlib.

在使用工具链的自定义安装时,有没有人在使用cygwin的Windows工作时遇到同样的问题?

提前谢谢你。如果您需要更多信息,请随时提出。

编辑(11.07.2017,11:35-CH)

这是我的第一个错误,在配置过程中只重复几次:

configure:3503: gcc -E  conftest.c
conftest.c:10:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:3503: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define UNIX 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3528: result: gcc -E

编辑(11.07.2017,13:42-CH)

使用babun我终于可以运行configure vim了。但是在运行make时我又遇到了另一个错误:

Starting make in the src directory.
If there are problems, cd to the src directory and run make there
cd src && D:/developtools/mingw32/bin/mingw32-make first
mingw32-make[1]: Entering directory 'D:/developtools/.babun/cygwin/home/tobbe/vim/src'
gcc -c -I.   -I/usr/include/python2.7 -DPYTHON_HOME='"/usr"' -pthread -fPIE    -Iproto -DHAVE_CONFIG_H     -g -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1        -o objects/option.o option.c
gcc: fatal error: no input files
compilation terminated.
Makefile:3215: recipe for target 'objects/option.o' failed
mingw32-make[1]: *** [objects/option.o] Error 1

我已经查看了对象目录,实际上没有创建option.o。

0 个答案:

没有答案