rdi: producer name in top-level-info

This commit is contained in:
Ryan Fleury
2024-06-13 16:55:47 -07:00
parent f655758060
commit 5349838633
6 changed files with 26 additions and 16 deletions
+5 -4
View File
@@ -3346,10 +3346,11 @@ p2r_convert(Arena *arena, P2R_User2Convert *in)
//
RDIM_TopLevelInfo top_level_info = {0};
{
top_level_info.arch = arch;
top_level_info.exe_name = str8_skip_last_slash(in->input_exe_name);
top_level_info.exe_hash = exe_hash;
top_level_info.voff_max = exe_voff_max;
top_level_info.arch = arch;
top_level_info.exe_name = str8_skip_last_slash(in->input_exe_name);
top_level_info.exe_hash = exe_hash;
top_level_info.voff_max = exe_voff_max;
top_level_info.producer_name = str8_lit(BUILD_TITLE_STRING_LITERAL);
}
//////////////////////////////////////////////////////////////