0

我在为 Jitsi 创建安装程序时遇到问题,当我从这里阅读文章时,我没有得到任何确切的方法来制作安装程序。

我还尝试过构建 ant(它一直告诉我我没有 make.exe,我应该从哪里得到这个文件??)

Buildfile: /Users/dejoong/workspace/eclipse-indigo/workspace/jitsi/build.xml
clean-install-windows:
    [mkdir] Created dir: /Users/dejoong/workspace/eclipse-indigo/workspace/jitsi/release/windows
    [mkdir] Created dir: /Users/dejoong/workspace/eclipse-indigo/workspace/jitsi/release/windows/tmp
build-installation-wix-base:
[propertyfile] Creating new property file: /Users/dejoong/workspace/eclipse-indigo/workspace/jitsi/release/windows/versionupdate.properties
    [mkdir] Created dir: /Users/dejoong/workspace/eclipse-indigo/workspace/jitsi/release/windows/tmp/light

BUILD FAILED
/Users/dejoong/workspace/eclipse-indigo/workspace/jitsi/resources/install/build.xml:403: Execute failed: java.io.IOException: Cannot run program "make.exe" (in directory "/Users/dejoong/workspace/eclipse-indigo/workspace/jitsi/src/native/windows/run"): error=2, No such file or directory

任何人都可以帮忙吗?或任何有关如何使安装程序形成 OSGI 框架的文章?

非常感谢。

4

1 回答 1

0

You need to download mingw with msys. After that, rename mingw-make.exe to make.exe, and then set it in the PATH.

msys has the commands required for the build, and Mingw has Make and Gcc for you to build.

于 2014-03-26T10:41:03.380 回答