gpt4 book ai didi

mingw - 在 MinGW 上开始使用 gnulib 并且不熟悉(足够)自动工具

转载 作者:行者123 更新时间:2023-12-04 15:33:13 27 4
gpt4 key购买 nike

我有一些为 Linux 编写的 C 代码,依赖于套接字和 arpa/inet.h 以及 libusb.h,我想在 MinGW 下为 Windows 编译它。 (请注意,当前项目只有一个非常简单的 Makefile,根本不依赖自动工具)。

看起来使用 gnulib 将是一种能够在 MinGW 下为 Windows 编译它的好方法,我已经朝着这个方向开始了,但似乎如果你对 autotools 不是很熟悉,你真的会陷入困境迅速地。

所以这就是我尝试过的:

$ gnulib-tool --import getsockname,getsockopt,setsockopt,socket,socketlib,sockets,socklen,sys_socket,arpa_inet,inet_ntop,inet_pton,netinet_in

它运行并在最后给我以下消息:
Don't forget to
- add "lib/Makefile" to AC_CONFIG_FILES in ./configure.ac,
- mention "lib" in SUBDIRS in Makefile.am,
- mention "-I m4" in ACLOCAL_AMFLAGS in Makefile.am,
- mention "m4/gnulib-cache.m4" in EXTRA_DIST in Makefile.am,
- invoke gl_EARLY in ./configure.ac, right after AC_PROG_CC,
- invoke gl_INIT in ./configure.ac.

好的,我没有 configure.ac 也没有 Makefile.am,所以我按如下方式创建它们(按照上面的说明):
$ cat Makefile.am
SUBDIRS = lib
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = m4/gnulib-cache.m4

和...
$ cat configure.ac
AC_INIT([configure.ac])
AC_CONFIG_FILES([lib/Makefile])
AC_PROG_CC
gl_EARLY
gl_INIT

现在在这一点上,gnulib 文档似乎假设您非常熟悉自动工具,因此它们省略了您接下来需要使用自动工具做什么的所有说明。

从我通过阅读各种论坛了解到的情况来看,接下来的步骤似乎是运行:
$ aclocal
$ autoconf
$ automake
$ configure

但是...当我运行 automake 时,我得到了:
$ automake
configure.ac: no proper invocation of AM_INIT_AUTOMAKE was found.
configure.ac: You should verify that configure.ac invokes AM_INIT_AUTOMAKE,
configure.ac: that aclocal.m4 is present in the top-level directory,
configure.ac: and that aclocal.m4 was recently regenerated (using aclocal).
lib/Makefile.am:30: library used but `RANLIB' is undefined
lib/Makefile.am:30: The usual way to define `RANLIB' is to add `AC_PROG_RANLIB

'
lib/Makefile.am:30: 到 configure.ac' and run再次自动配置。

嗯...好吧,这可能只是我在 Makefile.am 中缺少的一些东西(因为我不完全确定 Makefile.am 应该包含什么内容)...所以退后一步...我应该能够运行上面在 autoconf 步骤中创建的配置文件:
$ ./configure

checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
./configure: line 2497: gl_EARLY: command not found
./configure: line 2498: gl_INIT: command not found
rm: cannot lstat `conftest.exe': Permission denied

根据我通过谷歌搜索所读到的内容,似乎 gl_EARLY 和 gl_INIT 应该由添加到 Makefile.am 文件(ACLOCAL_AMFLAGS = -I m4)的行来处理,但此时我并不完全确定我正在正确地做这部分的自动工具。谁能指出我在这里做错了什么?

最佳答案

  • 添加 AC_CONFIG_MACRO_DIR([m4])configure.ac它会在 m4 中找到 gnulib 宏目录
  • 添加 AM_INIT_AUTOMAKE
  • AC_CONFIG_FILES不仅应该包含 gnulib Makefile,还应该包含您的 Makefile
  • 您可以通过调用 autoreconf 重新生成所有内容
  • 关于mingw - 在 MinGW 上开始使用 gnulib 并且不熟悉(足够)自动工具,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31060183/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com