Fix typos for OS X debug builds

This commit is contained in:
gingerBill
2018-12-02 19:39:21 +00:00
parent 17b0e3a1a1
commit d02b050850
+2 -2
View File
@@ -1089,11 +1089,11 @@ int main(int arg_count, char **arg_ptr) {
} }
#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) {