Go to the documentation of this file.
15#ifndef LIEF_PDB_BUILD_METADATA_H
16#define LIEF_PDB_BUILD_METADATA_H
35 enum class LANG : uint8_t {
63 enum class CPU : uint16_t {
123 HYBRID_X86ARM64 = 0xf7,
126 D3D11_SHADER = 0x100,
129 struct version_t { uint16_t major = 0;
144 struct build_info_t { std::string cwd;
150 std::string build_tool;
153 std::string source_file;
159 std::string command_line;
185 std::vector<std::string>
env()
const;
192 std::ostream&
operator<<(std::ostream& os,
const BuildMetadata& meta)
199 std::unique_ptr<details::BuildMetadata> impl_;