aboutsummaryrefslogtreecommitdiff
path: root/src/linker.cpp
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-07-09 20:03:50 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2024-07-10 14:25:18 +0200
commit8dc4eca4d2940500de30dfb8fd2ec25f7c31eba7 (patch)
treeb9cf2536dbdbc0f2aed935e1e43825e51ce50841 /src/linker.cpp
parent34c6868e7836cc24cca1c8fed84bfc5af20e8843 (diff)
Allow using precompiled .res file.
Diffstat (limited to 'src/linker.cpp')
-rw-r--r--src/linker.cpp45
1 files changed, 25 insertions, 20 deletions
diff --git a/src/linker.cpp b/src/linker.cpp
index 890a74e5a..ac3e32851 100644
--- a/src/linker.cpp
+++ b/src/linker.cpp
@@ -305,30 +305,35 @@ gb_internal i32 linker_stage(LinkerData *gen) {
defer (gb_free(heap_allocator(), windows_sdk_bin_path.text));
if (!build_context.use_lld) { // msvc
- String res_path = {};
+ String temp_res_path = path_to_string(heap_allocator(), build_context.build_paths[BuildPath_RES]);
+ String temp_rc_path = path_to_string(heap_allocator(), build_context.build_paths[BuildPath_RC]);
+ defer (gb_free(heap_allocator(), temp_res_path.text));
+ defer (gb_free(heap_allocator(), temp_rc_path.text));
+
+ String res_path = concatenate3_strings(heap_allocator(), str_lit("\""), temp_res_path, str_lit("\""));
+ String rc_path = concatenate3_strings(heap_allocator(), str_lit("\""), temp_rc_path, str_lit("\""));
defer (gb_free(heap_allocator(), res_path.text));
+ defer (gb_free(heap_allocator(), rc_path.text));
- // TODO(Jeroen): Add ability to reuse .res file instead of recompiling, if `-resource:file.res` is given.
if (build_context.has_resource) {
- String temp_res_path = path_to_string(heap_allocator(), build_context.build_paths[BuildPath_RES]);
- res_path = concatenate3_strings(heap_allocator(), str_lit("\""), temp_res_path, str_lit("\""));
- gb_free(heap_allocator(), temp_res_path.text);
-
- String temp_rc_path = path_to_string(heap_allocator(), build_context.build_paths[BuildPath_RC]);
- String rc_path = concatenate3_strings(heap_allocator(), str_lit("\""), temp_rc_path, str_lit("\""));
- gb_free(heap_allocator(), temp_rc_path.text);
- defer (gb_free(heap_allocator(), rc_path.text));
-
- result = system_exec_command_line_app("msvc-link",
- "\"%.*src.exe\" /nologo /fo %.*s %.*s",
- LIT(windows_sdk_bin_path),
- LIT(res_path),
- LIT(rc_path)
- );
-
- if (result) {
- return result;
+ if (temp_rc_path == "") {
+ debugf("Using precompiled resource %.*s\n", LIT(res_path));
+ } else {
+ debugf("Compiling resource %.*s\n", LIT(res_path));
+
+ result = system_exec_command_line_app("msvc-link",
+ "\"%.*src.exe\" /nologo /fo %.*s %.*s",
+ LIT(windows_sdk_bin_path),
+ LIT(res_path),
+ LIT(rc_path)
+ );
+
+ if (result) {
+ return result;
+ }
}
+ } else {
+ res_path = {};
}
String linker_name = str_lit("link.exe");