Make object and assembly file extensions user-changeable again

This commit is contained in:
David Bader
2026-07-14 14:02:09 +02:00
parent 58efb2cc63
commit 865b97fa9e

View File

@@ -2734,7 +2734,7 @@ gb_internal String lb_filepath_obj_for_module(lbModule *m) {
gbString path = gb_string_make_length(heap_allocator(), basename.text, basename.len);
path = gb_string_appendc(path, "/");
bool output_is_directory = path_is_directory(make_string_c(path));
bool output_is_directory = path_is_directory(build_context.build_paths[BuildPath_Output]);
if (USE_SEPARATE_MODULES) {
GB_ASSERT(m->module_name != nullptr);