编译 C++在 Linux 上使用 x86_64-w64-mingw32-gcc 的程序

发布于 2025-01-19 20:22:49 字数 518 浏览 0 评论 0原文

我在 Linux 上使用 x86_64-w64-mingw32-gcc 编译 C++ 程序时遇到问题。我的程序由以下文件组成:一个 cpp 文件、两个头文件和一个 asm 文件。我正在使用以下命令来编译 x64 PE 文件:

x86_64-w64-mingw32-gcc test.cpp -c test.asm l kernel32 -l user32 -l gdi32 -l winspool -l crypt32 -l comdlg32 -l advapi32  -l shell32 -l ole32 -l oleaut32 -l uuid -l odbc32 -l odbccp32 -I . -o test.exe

我还尝试使用以下语法使用 g++,但它指出它找不到 windows.h:

g++ test.asm test.cpp -o test.exe

当我运行可执行文件时,它只是告诉我它与我的操作系统不兼容。有人可以指出我的语法有什么问题吗?它似乎也没有链接 ASM 文件。

I am having issues compiling my C++ program on Linux using x86_64-w64-mingw32-gcc. My program is comprised of of the following files: one cpp file, two header files, and an asm file. I am using the following command to compile a x64 PE file:

x86_64-w64-mingw32-gcc test.cpp -c test.asm l kernel32 -l user32 -l gdi32 -l winspool -l crypt32 -l comdlg32 -l advapi32  -l shell32 -l ole32 -l oleaut32 -l uuid -l odbc32 -l odbccp32 -I . -o test.exe

I've also tried using g++ using the following syntax, but it states that the it can't find windows.h:

g++ test.asm test.cpp -o test.exe

When I run the executable, it just tells me that it is not compatible with my operating system. Could someone please point out what is wrong with my syntax? It also doesn't seem to be linking the ASM file either.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文