3

我无法使用 premake 获得与主程序的外部库链接。例如,我已将问题简化为以下示例:

./_external/ext.cpp

#include "ext.h"
int foo()
{
    return 4;
}

./_external/ext.h

#pragma once
int foo();

./main.cpp

#include "stdio.h"
#include "_external/ext.h"

int main()
{
    printf("%d", foo());
    return 0;
}

./premake4.lua

solution "Test"
    configurations { "Release", "Debug" }

project "TestMain"
    language "C++"
    kind "ConsoleApp"

    files "main.cpp"

    links
    {
        "_external/libfoo.a"
    }

我在 Cygwin 环境下创建 GNU makefile:

$ ./premake4.exe gmake
Building configurations...
Running action 'gmake'...
Generating Makefile...
Generating TestMain.make...
Done.

当我制作时出现以下错误:

$ make
==== Building TestMain (release) ====
Linking TestMain
/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/ld: cannot find -lD:/test/_external/libfoo.a
collect2: ld returned 1 exit status
TestMain.make:93: recipe for target `TestMain.exe' failed
make[1]: *** [TestMain.exe] Error 1
Makefile:16: recipe for target `TestMain' failed
make: *** [TestMain] Error 2

我发现的唯一解决方法是使用“ linkoptions ”而不是“ links ”来摆脱“-l”,但对我来说,它更像是一个 hack 而不是一个解决方案。

4

1 回答 1

1

你做对了,但 Premake 做错了。Premake 的 makefile 生成器中存在一个错误,导致无法正确链接。它现在已在stable(将成为 4.4 版)和dev(将成为 5.0)存储库中修复。

很高兴得到修复 - 希望它有所帮助。

于 2013-01-29T15:30:54.813 回答