gpt4 book ai didi

c++ - 如何在 Eclipse CDT 中编译 64 位 DLL(使用 Windows SDK)?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:16:18 24 4
gpt4 key购买 nike

我想做的是:在 win7 上创建一个 64 位 DLL,它与包括 OLE32.dll 在内的 Windows API 交互。

我得到的:

我现在卡住了。我下载了 Visual Studio 2015 Community Edition。我试图在那里创建一个 DLL,并在创建时生成了所有内容,但没有生成 dll。该程序没有提示,一切都按照教程中的设置进行了设置,但没有 dll 文件。

所以我跳过了这个并下载了 Eclipse CDT。我使用 Visual C 工具链进行设置,并在出现一些小问题后生成了 DLL。所以我使用 Java 来启动它,但它提示(我使用 JNA 进行集成)并且它接缝说我有一个 32 位 DLL。

所以我在网上搜索、阅读并做了一些事情,但我完全迷失了。由于 Visual Studio 2010 Express 版本没有 64 位编译器,我什至不确定这次 Visual Studio 社区版是否支持 64 位 dll。

我还安装了 Windows SDK v7.1。我链接到一个库文件 ole32.dll。它包含我需要的 CoCreateInstance 方法。我必须手动添加它才能让编译器接收它。如果我切换到 64 位 dll 版本,编译器会提示无法链接 CoCreateInstance 方法。

所以基本上我迷路了。网络上的来源提供了解决 2010 Express 无法创建 x64 DLL 的方法,结果表明该提示正在获取 Windows SDK,因为它带有编译器。

我还注意到 CDT 使用 Visual Studio 10 文件,所以我猜它正在使用这个编译器。

我为编译器和链接器都设置了/machine:64 选项。但是链接器仍然提示来自编译器的 obj 文件是 32 位的。

有什么想法吗?

[更新]

编译器打印以下行,所以基本上它无法编译 64 位版本。知道如何更换它吗?如前所述,它使用 Visual Studio 10 文件夹,但我也有 Visual Studio 12 和 14 文件夹。

cl : Command line warning D9002 : ignoring unknown option '/machine:x64'

最佳答案

嗯,我不认为“/machine:x64”是一个 cl 选项,但它是链接器选项之一。

如果你想用windows sdk或visual studio环境制作一些dll。

我不确定我的解决方案是否适合您的,这是我为使用 eclipse 和 windows sdk 7.1 编译我的 64 位项目所做的。

我有两个 eclipse IDE,分别是 32 位和 64 位 neon 版本。我选择一个 64 位的。您可以查看我关于安装的回答之一 here .在我看来,它们的任何版本都可以。这是您的选择。

第一步。从开始菜单运行“Windows SDK 7.1 命令提示符”。

enter image description here

然后,使用命令更改64位开发级别后,在命令窗口中启动我的eclipse。

enter image description here enter image description here

第二步。为我的项目设置路径变量。我有自己的带有属性窗口的项目。

enter image description here

在我看来,重要的变量似乎是 LIB 和 PATH 变量。

我核对了这两个变量,一个来自windows SDK的提示窗口,另一个是安装后的当前设置变量。

这里是SDK变量 enter image description here

我的最终变量是

LIB:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319;
C:\Windows\Microsoft.NET\Framework\v4.0.30319;
C:\Windows\Microsoft.NET\Framework64\v3.5;
C:\Windows\Microsoft.NET\Framework\v3.5;;
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Lib\amd64;
C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib\X64

PATH:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319;
C:\Windows\Microsoft.NET\Framework\v4.0.30319;
C:\Windows\Microsoft.NET\Framework64\v3.5;
C:\Windows\Microsoft.NET\Framework\v3.5;;
C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE;
C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools;;
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Bin\amd64;
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Bin\VCPackages;;
C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\NETFX 4.0 Tools\x64;
C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\x64;
C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin;;
C:\Windows\system32;C:\Windows;
C:\Windows\System32\Wbem;
C:\Windows\System32\WindowsPowerShell\v1.0\;

第三,我修改了链接器标志,如下图所示。

enter image description here

最后,我成功编译了我的项目。

这是我的构建日志。

Info: Internal Builder is used for build

cl /c /EHs /MD /Zi /nologo /Foutil.obj "..\util.c"

rc /Fo proc_view.res "..\proc_view.rc"

Microsoft (R) Windows (R) Resource Compiler Version 6.1.7600.16385 Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /EHs /MD /Zi /nologo /Foprocss.obj "..\procss.c"

link /machine:x64 /debug /nologo /OUT:Systemer.exe FreeList.obj LinkedList.obj proc_main.obj proc_view.res procss.obj util.obj Kernel32.lib Psapi.lib User32.lib enter image description here

最后一个是使用 dumpbin 命令检查我的可执行文件是 64 位还是 32 位。

enter image description here

就是这样。

我认为带有 MinGW 或 cygwin 的 Eclipse 可能是更好的选择。

我希望这适合你。

关于c++ - 如何在 Eclipse CDT 中编译 64 位 DLL(使用 Windows SDK)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33958346/

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