本文介绍了Windows上用于gnu make的libintl3和libiconv2在哪里,需要在MinGW上用ruby编译vim的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试为Windows运行gnu make,但由于未找到libint3.dll,因此无法运行.

I am trying to run gnu make for windows, but it wouldn't run because libint3.dll was not found.

果然, http://gnuwin32.sourceforge.net/packages/make.htm指定libint3libiconv2是必需的,但是尝试遵循它们的链接显然会在服务器上产生错误.

Sure enough, http://gnuwin32.sourceforge.net/packages/make.htm specifies that libint3 and libiconv2 are required, but trying to follow their link obviously generates an error on the server.

所以,我需要这些库吗?
我在哪里可以得到它们?我可以从其他地方下载gnu make.

So, do I need these libraries, and where would I get them, or
can I download gnu make from somewhere else.

更多背景

这是我要尝试的方法,也许其他人可以分享一种完全不同的方法:我希望使用支持ruby 1.8.7的vim进行编译,以便可以使用 http://code.google.com/p/vorax/插件.我下载了minGW,gnuMake,ruby 1.8.7和vimsources,现在被困在调用(vim的)makefile Make_ming.mak.

Here's what I try to do, and maybe someone else can share a way how to do it differently altogether: I want to compilve vim with support for ruby 1.8.7 so that I can use the http://code.google.com/p/vorax/ plugin for vim. I downloaded minGW, gnuMake, ruby 1.8.7 and the vimsources and am stuck now calling (vim's) makefile Make_ming.mak.

我添加了标签,因为也许-只是-有人遇到了同样的问题.

I have added according tags because maybe -just maybe- someone else ran into the same problem.

推荐答案

gnuwin32 sourceforge上的页面似乎具有您需要的依赖项:

The gnuwin32 page at sourceforge appears to have the dependencies you need:

$ unzip -l make-3.81-dep.zip
Archive:  make-3.81-dep.zip
Make-3.81: Dependencies
  Length      Date    Time    Name
---------  ---------- -----   ----
   898048  2004-03-16 12:37   bin/libiconv2.dll
   103424  2005-05-06 12:52   bin/libintl3.dll
       24  2006-11-24 16:05   manifest/make-3.81-dep.ver
       93  2006-11-24 16:05   manifest/make-3.81-dep.mft
---------                     -------
  1001589                     4 files

如果您想要直接链接,请尝试

If you want a direct link, try this

这篇关于Windows上用于gnu make的libintl3和libiconv2在哪里,需要在MinGW上用ruby编译vim的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 01:07