9

我们正在开发一个依赖于 GNU readline 库的 C++ 软件包,我们通常使用 gcc 构建(至少需要版本 4)。现在我们想把它移植到 Windows 上,获得一个静态链接的版本,我们可以重新分发它而不需要用户编译。

我尝试了几种方法:

  • 使用 Cygwin 构建(不使用提供的 readline 结合-mno-cygwin或 MinGW 编译器),
  • 使用 MinGW 和 GnuWin32 中的 readline 构建(未解决的对 stat64 的依赖,我无法解决),
  • 使用 MinGW 构建并构建 readline 和所需的 pdcurses 从源代码(最有希望的方法是使用静态二进制文件!但获得的交互式 shell 行为不正确,例如退格键未可视化)。

有什么想法可以让我们使用其中一种方法吗?

4

3 回答 3

4

在经历了类似的挫折之后,我刚刚使用MinGW-w64编译了 libreadline 6.2 的 32 位和 64 位版本。这是我的做法:

我的开发目录的布局:

c:\dev\msys
c:\dev\mingw32
c:\dev\local32
c:\dev\mingw64
c:\dev\local64

为 32 位构建设置一些环境变量:

export CPPFLAGS=-I/c/dev/local32/include
export LDFLAGS=-L/c/dev/local32/lib

术语帽 1.3.1。
运行配置脚本:

./configure --host=i686-w64_mingw32 --prefix=/c/dev/local32

编辑 termcap.c 并在顶部修复几行。我的看起来像这样:

/* Emacs config.h may rename various library functions such as malloc.  */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef emacs

#include <lisp.h>       /* xmalloc is here */
/* Get the O_* definitions for open et al.  */
#include <sys/file.h>
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
//#ifdef HAVE_UNISTD_H
#include <unistd.h>
//#endif

#else /* not emacs */

//#ifdef STDC_HEADERS
#include <stdlib.h>
#include <string.h>
#define bcopy(b1,b2,len) (memmove((b2), (b1), (len)), (void) 0)
//#else
//char *getenv ();
//char *malloc ();
//char *realloc ();
//#endif

和 tparam.c

/* Emacs config.h may rename various library functions such as malloc.  */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef emacs
#include "lisp.h"       /* for xmalloc */
#else

//#ifdef STDC_HEADERS
#include <stdlib.h>
#include <string.h>
//#else
//char *malloc ();
//char *realloc ();
//#endif

/* Do this after the include, in case string.h prototypes bcopy.  */
//#if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy)
#define bcopy(s, d, n) memcpy ((d), (s), (n))
//#endif

#endif /* not emacs */

修改 Makefile:

Line 23: CC = i686-w64-mingw32-gcc
Line 24: AR = i686-w64-mingw32-ar
Line 36: prefix = /c/dev/local32
Line 49: #oldincludedir = /usr/local

之后调用make install,它应该编译没有警告或错误。

readline 6.2
在调用之前设置与 termcap 相同的 CPPFLAGS 和 LDFLAGS 变量:

./configure --prefix=/c/dev/local32 --host=i686-w64-mingw32 --enable-static --enable-shared

编辑生成文件:

Line 40: AR = i686-w64-mingw32-ar

make install现在应该编译并安装 readline!
如果您想要 64 位库,请将i686-w64-mingw32替换为x86_64-w64-mingw32将 local32 替换local64

于 2011-03-14T07:55:50.450 回答
2

查看MinGWEditLine 库

本机 Windows 控制台的 EditLine API 实现。这个 BSD 许可库提供类似于 GNU Readline 中的命令行编辑和历史记录功能。

主要的 readline 函数是为本机 Windows 控制台实现的。BSD 许可证。

于 2011-04-12T20:46:36.273 回答
0

gnuwin32 有一个 readline 端口:http: //gnuwin32.sourceforge.net/packages/readline.htm

对于非 GPL 项目,libedit 具有更可接受的许可 [使用 BSD 许可]

于 2011-02-10T13:58:01.843 回答