Для пользовательского шага сборки мне нужно поместить некоторые данные в определенный раздел.В GCC и clang это можно сделать с помощью
__attribute__((section(".my_section"))) const int variable_in_this_section = 42;
Чтобы сделать создание проще и менее подверженным ошибкам, я создал шаблон класса:
#include <cstdint>
#ifdef _MSC_VER
#define SECTION(x) __declspec(section x)
#else
#define SECTION(x) __attribute__((section(x)))
#endif
#define DATA_SECTION SECTION(".my_data")
// the type to store in the .my_data section
struct hook_table_entry_t
{
std::uint32_t game_addr, hook_addr;
};
template<std::uint32_t address, std::uint32_t function>
struct bind_hook_t
{
DATA_SECTION static const hook_table_entry_t s_entry;
};
template<std::uint32_t address, std::uint32_t function>
const hook_table_entry_t bind_hook_t<address, function>::s_entry {address, function};
// instantiate template to create value
template struct bind_hook_t<0xffffffff, 0xf0f0f0f0>;
Когда яскомпилировал это с помощью clang 3.8 мой объектный файл выглядел так:
Section .my_data:
0000 ffffffff f0f0f0f0 ........
Отлично!Но при тестировании в GCC 5 и 7 я получил следующее:
Section .rodata._ZN11bind_hook_tILj4294967295ELj4042322160EE7s_entryE:
0000 ffffffff f0f0f0f0 ........
Есть ли способ заставить GCC также помещать данные в .my_data?Примечание: он работает, когда bind_hook_t
не является шаблоном, но это наносит ущерб всей его цели.