RError.com

RError.com Logo RError.com Logo

RError.com Navigation

  • 主页

Mobile menu

Close
  • 主页
  • 系统&网络
    • 热门问题
    • 最新问题
    • 标签
  • Ubuntu
    • 热门问题
    • 最新问题
    • 标签
  • 帮助
主页 / 问题

问题[gcc]

Martin Hope
Denver Toha
Asked: 2022-08-03 04:25:18 +0000 UTC

在宏内部创建结构时,如何根据传递给宏的值生成其名称?

  • 0
#define EXAMPLE_MACRO(val_type, postfix) \
    struct example_struct_postfix {      \
        val_type val;                                     \
    }; 

EXAMPLE_MACRO(int, name);

我想在这个例子中,生成的是example_struct_name,但是生成的是example_struct_postfix

c gcc
  • 2 个回答
  • 21 Views
Martin Hope
VanechikSpace
Asked: 2022-09-13 23:25:48 +0000 UTC

关闭程序后如何显示退出代码?

  • 0

我使用 mingw g++ 在 windows cmd 中编译程序。每次关闭程序后,我都想查看退出代码。比如我在使用mingw的ide clion时,程序成功完成后,在控制台看到如下:

在此处输入图像描述

例如,如果程序没有成功结束,那么我会看到不同的画面:

在此处输入图像描述

也就是说,我看到了程序完成执行的代码。

如果我用 mingw 编译相同的程序,但只在 cmd 中。无论结果是否成功,我都不会看到程序结束的代码:

在此处输入图像描述

是否有可能让我在 cmd 中看到这个退出代码?

gcc
  • 1 个回答
  • 10 Views
Martin Hope
Trimsky
Asked: 2022-07-09 10:40:45 +0000 UTC

g++ 的 -MD -MMF 选项是什么?

  • 3

大家好!请解释这些是 gcc、g++ 中的 -MD -MMF 选项。我经常在 premake5 中看到它们,CMake 生成的 Makefiles。但实际上没有关于它们的信息。我在 gcc.gnu.org 上找到了他们的解释,但我不明白这是什么意思。请帮帮我。

gcc
  • 2 个回答
  • 10 Views
Martin Hope
Ca6aqa
Asked: 2020-11-20 18:27:15 +0000 UTC

如何获取 RTL 代码?

  • 2

哪个 gcc 选项允许您获取 RTL 代码?

gcc
  • 1 个回答
  • 10 Views
Martin Hope
Megafox
Asked: 2020-07-15 22:16:18 +0000 UTC

简单的库不编译

  • 0

我想把这个库编译成一个dll,但要么我很愚蠢,要么有些东西不起作用。

https://github.com/nathan-osman/win32pe

我下载了最新版本的boost、cmake-gui、mingw,将BOOST_ROOT=boost-xx属性添加到cmake(来自boost网站的win32存档中的文件夹),将mingw32/bin文件夹添加到系统PATH,点击配置和生成,结果一切,cmake 工作。

接下来,我在为构建选择的文件夹中打开一个命令窗口,并在其中写入 mingw32-make.exe。这个废话出现了:

C:\win32pebuild>mingw32-make.exe
[ 16%] Building CXX object win32pe/CMakeFiles/win32pe.dir/src/file.cpp.obj
C:/win32pe/win32pe/include/win32pe/fileheader.h:45:9: error: expected identifier before numeric constant
 i386  = 0x014c,
 ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:45:9: error: expected '}' before numeric constant
C:/win32pe/win32pe/include/win32pe/fileheader.h:45:9: error: expected unqualified-id before numeric constant
 In file included from C:\win32pe\win32pe\src\file_p.h:32:0,
                 from C:\win32pe\win32pe\src\file.cpp:32:
C:/win32pe/win32pe/include/win32pe/fileheader.h:64:16: error: expected unqualified-id before ')' token
 FileHeader();
            ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:65:16: error: expected unqualified-id before 'const'
 FileHeader(const FileHeader &other);
            ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:65:16: error: expected ')' before 'const'
C:/win32pe/win32pe/include/win32pe/fileheader.h:66:25: error: declaration of '~win32pe::FileHeader' as non-member
 virtual ~FileHeader();
                     ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:68:50: error: 'win32pe::FileHeader& win32pe::operator=(const win32pe::FileHeader&)' must be a nonstatic member function
 FileHeader &operator=(const FileHeader &other);
                                              ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:70:24: error: non-member function 'uint16_t win32pe::machine()' cannot have cv-qualifier
 uint16_t machine() const;
                    ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:71:30: error: non-member function 'uint32_t win32pe::timeDateStamp()' cannot have cv-qualifier
 uint32_t timeDateStamp() const;
                          ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:72:32: error: non-member function 'uint16_t win32pe::characteristics()' cannot have cv-qualifier
 uint16_t characteristics() const;
                            ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:74:1: error: expected unqualified-id before 'private'
 private:
 ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:78:5: error: 'friend' used outside of class
 friend class FilePrivate;
 ^
C:/win32pe/win32pe/include/win32pe/fileheader.h:81:1: error: expected declaration before '}' token
 }
 ^
win32pe\CMakeFiles\win32pe.dir\build.make:62: recipe for target 'win32pe/CMakeFiles/win32pe.dir/src/file.cpp.obj' failed
mingw32-make.exe[2]: *** [win32pe/CMakeFiles/win32pe.dir/src/file.cpp.obj] Error 1
CMakeFiles\Makefile2:92: recipe for target 'win32pe/CMakeFiles/win32pe.dir/all' failed
mingw32-make.exe[1]: *** [win32pe/CMakeFiles/win32pe.dir/all] Error 2
makefile:128: recipe for target 'all' failed
mingw32-make.exe: *** [all] Error 2

C:\win32pebuild>

在 ubuntu 上一切都很好,但我正在编译一个需要 dll 的 windows 程序,所以我需要做一些事情。他们到底给我写了什么?

gcc
  • 2 个回答
  • 10 Views

Sidebar

Stats

  • 问题 10021
  • Answers 30001
  • 最佳答案 8000
  • 用户 6900
  • 常问
  • 回答
  • Marko Smith

    我看不懂措辞

    • 1 个回答
  • Marko Smith

    请求的模块“del”不提供名为“default”的导出

    • 3 个回答
  • Marko Smith

    "!+tab" 在 HTML 的 vs 代码中不起作用

    • 5 个回答
  • Marko Smith

    我正在尝试解决“猜词”的问题。Python

    • 2 个回答
  • Marko Smith

    可以使用哪些命令将当前指针移动到指定的提交而不更改工作目录中的文件?

    • 1 个回答
  • Marko Smith

    Python解析野莓

    • 1 个回答
  • Marko Smith

    问题:“警告:检查最新版本的 pip 时出错。”

    • 2 个回答
  • Marko Smith

    帮助编写一个用值填充变量的循环。解决这个问题

    • 2 个回答
  • Marko Smith

    尽管依赖数组为空,但在渲染上调用了 2 次 useEffect

    • 2 个回答
  • Marko Smith

    数据不通过 Telegram.WebApp.sendData 发送

    • 1 个回答
  • Martin Hope
    Alexandr_TT 2020年新年大赛! 2020-12-20 18:20:21 +0000 UTC
  • Martin Hope
    Alexandr_TT 圣诞树动画 2020-12-23 00:38:08 +0000 UTC
  • Martin Hope
    Air 究竟是什么标识了网站访问者? 2020-11-03 15:49:20 +0000 UTC
  • Martin Hope
    Qwertiy 号码显示 9223372036854775807 2020-07-11 18:16:49 +0000 UTC
  • Martin Hope
    user216109 如何为黑客设下陷阱,或充分击退攻击? 2020-05-10 02:22:52 +0000 UTC
  • Martin Hope
    Qwertiy 并变成3个无穷大 2020-11-06 07:15:57 +0000 UTC
  • Martin Hope
    koks_rs 什么是样板代码? 2020-10-27 15:43:19 +0000 UTC
  • Martin Hope
    Sirop4ik 向 git 提交发布的正确方法是什么? 2020-10-05 00:02:00 +0000 UTC
  • Martin Hope
    faoxis 为什么在这么多示例中函数都称为 foo? 2020-08-15 04:42:49 +0000 UTC
  • Martin Hope
    Pavel Mayorov 如何从事件或回调函数中返回值?或者至少等他们完成。 2020-08-11 16:49:28 +0000 UTC

热门标签

javascript python java php c# c++ html android jquery mysql

Explore

  • 主页
  • 问题
    • 热门问题
    • 最新问题
  • 标签
  • 帮助

Footer

RError.com

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

帮助

© 2023 RError.com All Rights Reserve   沪ICP备12040472号-5