mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix typos for OS X debug builds
This commit is contained in:
+12
-12
@@ -1088,19 +1088,19 @@ int main(int arg_count, char **arg_ptr) {
|
|||||||
return exit_code;
|
return exit_code;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(GB_SYSTEM_OSX)
|
#if defined(GB_SYSTEM_OSX)
|
||||||
if (BuildFlag_Debug) {
|
if (build_context.ODIN_DEBUG) {
|
||||||
// NOTE: macOS links DWARF symbols dynamically. Dsymutil will map the stubs in the exe
|
// NOTE: macOS links DWARF symbols dynamically. Dsymutil will map the stubs in the exe
|
||||||
// to the symbols in the object file
|
// to the symbols in the object file
|
||||||
exit_code = system_exec_command_line_app("dsymutil", true,
|
exit_code = system_exec_command_line_app("dsymutil", true,
|
||||||
"%.*s%s", LIT(output_base), output_ext
|
"dsymutil %.*s%s", LIT(output_base), output_ext
|
||||||
);
|
);
|
||||||
|
|
||||||
if (exit_code != 0) {
|
if (exit_code != 0) {
|
||||||
return exit_code;
|
return exit_code;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
if (build_context.show_timings) {
|
if (build_context.show_timings) {
|
||||||
|
|||||||
Reference in New Issue
Block a user