1

lua51.lib(lua51.dll) : 错误 LNK2005: _vsnprintf 已经在 libcurl_a.lib(cryptlib.obj) 中定义

GameName.Build.cs ->

// Fill out your copyright notice in the Description page of Project Settings.

using System.IO;
using UnrealBuildTool;

public class GameName : ModuleRules
{
    private string ThirdPartyPath
    {
        get { return Path.GetFullPath(Path.Combine(ModuleDirectory, "../../ThirdParty/")); }
    }  
    private bool LoadLua()
    {
        bool isLibSupported = false;

        string LibrariesPath = Path.Combine(ThirdPartyPath, "Lua", "libraries");

        PublicAdditionalLibraries.Add(Path.Combine(LibrariesPath, "lua51.lib"));

        PublicIncludePaths.Add(Path.Combine(ThirdPartyPath, "Lua", "includes"));

        Definitions.Add(string.Format("WITH_LUA_BINDING={0}", isLibSupported ? 1 : 0));

        return true;
    }
    public GameName(ReadOnlyTargetRules Target) : base(Target)
    {
        PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;

        PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });

        PrivateDependencyModuleNames.AddRange(new string[] {  });

        LoadLua();

        // Uncomment if you are using Slate UI
        // PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });

        // Uncomment if you are using online features
        // PrivateDependencyModuleNames.Add("OnlineSubsystem");

        // To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
    }
}

ActorName.cpp ->

// Fill out your copyright notice in the Description page of Project Settings.

#include "ActorName.h"

extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
#include "luaconf.h"
#pragma comment(lib, "lua51.lib")
}

// Sets default values
APart::APart()
{
    // Set this actor to call Tick() every frame.  You can turn this off to improve performance if you don't need it.
    PrimaryActorTick.bCanEverTick = true;
}

// Called when the game starts or when spawned
void APart::BeginPlay()
{
    Super::BeginPlay();
    lua_State *L = luaL_newstate();
    luaL_openlibs(L);
    FVector NewLocation = GetActorLocation();
    NewLocation.Z = NewLocation.Z + 200.0f;
}

// Called every frame
void APart::Tick(float DeltaTime)
{
    Super::Tick(DeltaTime);
    /*FVector NewLocation = GetActorLocation();
    float DeltaHeight = (FMath::Sin(RunningTime + DeltaTime) - FMath::Sin(RunningTime));
    NewLocation.Z += DeltaHeight * 100.0f;
    NewLocation.Y += DeltaHeight * 800.0f;//Scale our height by a factor of 20
    RunningTime += DeltaTime;
    SetActorLocation(NewLocation);*/
}

我为 64x 编译了 LuaJit,我不包括 32x 构建,我需要吗?我不打算为 32 位系统发布我的游戏,因为没有意义大声笑(除了 IOS,因为我很确定您必须上传 32 位和 64 位版本的应用程序:3)

我只包含过一次 Lua51.lib 吗?我做错了什么吗?

4

1 回答 1

0

我知道这是一个很老的问题,但是由于我在其他任何地方都没有看到合适的答案并且花了很长时间才弄清楚这一点,所以我想我会帮助遇到同样问题的任何可怜的灵魂。

基本的,afaik 不可避免的问题是 LuaJIT 的msvcbuild版本中有额外的符号(显然)没有理由。以下是我编译工作版本的步骤:

  • 下载 LuaJIT Windows 源代码
  • 打开 Makefile 并
    • 将模式设置为动态
    • 可选择启用 DLUAJIT_ENABLE_LUA52COMPAT 标志
  • 使用 mingw32-make (mingw-w64)编译
  • 将 lua51.dll 文件复制到另一个文件夹。
  • 使用 VS 2017 的 x64 Native Tools 命令提示,导出 DLL 中的外部符号 dumpbin /EXPORTS lua51.dll > lua51.exports
  • 从导出文件中,创建一个单独的 .def 文件,指向包含所有符号引用的 dll
  • 使用x64 Native Tools Comand Prompt for VS 2017,根据def文件生成lib和exp文件 lib /def:lua51.def /out:lua51.lib

您现在有一个 DLL 和一个链接到它的 LIB!

  • 您现在可以将 dll、lib 和 exp 文件复制到您想要安装 Lua 的位置。
  • 按照 LuaJIT 网站上的安装说明完成我自己的路径,即
    • 将所有文件从 K:/Git Repos/luajit205-52-libdll/luajit205-52-dll/src 复制到 C:/LUA
    • 将文件从 K:/Git Repos/luajit205-52-libdll/luajit205-52-dll/src/jit 复制到 C:/LUA/lua/jit

我写出了完整的过程以及我是如何完成它的,以及我用于我的一个 git 存储库的 dll/lib/exp,因此对于额外的文档和可能有用的文件,请访问:
https ://github.com/ Zaltu/luajit205-52-libdll

于 2019-02-24T02:39:20.197 回答