gpt4 book ai didi

c++ - C/C++ : print contents of (config) header file

转载 作者:行者123 更新时间:2023-11-30 16:27:10 25 4
gpt4 key购买 nike

我有一个由 CMake 生成的 config.h,定义当前构建的设置,如下所示:

#ifndef CONFIG_H__
#define CONFIG_H__

#define CMAKE_BUILD_TYPE "Debug"
#define MY_GITHASH "@123456@"
#define MY_COMPILATION_DATE "2018-10-16"
#define MY_VERSION_MAJOR 1
#define MY_VERSION_MINOR 0

#endif /* CONFIG_H__ */

如何将其放入二进制文件中以便可以按需打印?我知道我可以将所有定义组合成一个新定义并打印它。我正在寻找一种更直接的解决方案,只需打印整个头文件 - 理想情况下不需要 config.h 头文件的位置。

最佳答案

  1. 不理想(config.h 必须位于已知的 gas 位置)
  2. 仅限海湾合作委员会

测试.c:

extern const char config_h_begin;
extern const char config_h_end;

asm ("\t.section .rodata\n"
"config_h_begin: \n"
"\t .incbin \"config.h\"\n"
"config_h_end:\n"
);

const char *begin = &config_h_begin;
const char *end = &config_h_end;
$objdump -s test.o
test.o: file format elf64-x86-64

Contents of section .rodata:

0000 2369666e 64656620 5f5f434f 4e464947 #ifndef __CONFIG
0010 5f485f5f 0a236465 66696e65 205f5f43 _H__.#define __C
0020 4f4e4649 475f485f 5f0a0a23 636d616b ONFIG_H__..#cmak
0030 65646566 696e6520 434d414b 455f4255 edefine CMAKE_BU
0040 494c445f 54595045 20224465 62756722 ILD_TYPE "Debug"
0050 0a236465 66696e65 204d595f 47495448 .#define MY_GITH
0060 41534820 22403132 33343536 40220a23 ASH "@123456@".#
0070 64656669 6e65204d 595f434f 4d50494c define MY_COMPIL
0080 4154494f 4e5f4441 54452022 32303138 ATION_DATE "2018
0090 2d31302d 3136220a 23646566 696e6520 -10-16".#define
00a0 4d595f56 45525349 4f4e5f4d 414a4f52 MY_VERSION_MAJOR
00b0 20310a23 64656669 6e65204d 595f5645 1.#define MY_VE
00c0 5253494f 4e5f4d49 4e4f5220 300a0a23 RSION_MINOR 0..#
00d0 656e6469 66202f2a 205f5f43 4f4e4649 endif /* __CONFI
00e0 475f485f 5f202a2f 0a0a G_H__ */..

关于c++ - C/C++ : print contents of (config) header file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52830564/

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