mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 16:18:52 +00:00
Revert "Changed tab width was on 2 now 4"
This reverts commit fc7c0ca3b0.
This commit is contained in:
+8
-2
@@ -341,7 +341,10 @@ i32 linker_stage(lbGenerator *gen) {
|
||||
String lib_name = lib;
|
||||
lib_name = remove_extension_from_path(lib_name);
|
||||
lib_str = gb_string_append_fmt(lib_str, " -framework %.*s ", LIT(lib_name));
|
||||
} else if (string_ends_with(lib, str_lit(".a")) || string_ends_with(lib, str_lit(".o")) || string_ends_with(lib, str_lit(".dylib"))) {
|
||||
} else if (string_ends_with(lib, str_lit(".a")) ||
|
||||
string_ends_with(lib, str_lit(".o")) ||
|
||||
string_ends_with(lib, str_lit(".dylib")))
|
||||
{
|
||||
// For:
|
||||
// object
|
||||
// dynamic lib
|
||||
@@ -2136,7 +2139,10 @@ int main(int arg_count, char const **arg_ptr) {
|
||||
String lib_name = lib;
|
||||
lib_name = remove_extension_from_path(lib_name);
|
||||
lib_str = gb_string_append_fmt(lib_str, " -framework %.*s ", LIT(lib_name));
|
||||
} else if (string_ends_with(lib, str_lit(".a")) || string_ends_with(lib, str_lit(".o")) || string_ends_with(lib, str_lit(".dylib"))) {
|
||||
} else if (string_ends_with(lib, str_lit(".a")) ||
|
||||
string_ends_with(lib, str_lit(".o")) ||
|
||||
string_ends_with(lib, str_lit(".dylib")))
|
||||
{
|
||||
// For:
|
||||
// object
|
||||
// dynamic lib
|
||||
|
||||
Reference in New Issue
Block a user