| ... | ... | @@ -1426,18 +1426,6 @@ static void get_darwin_platform(LinkJob *lj, DarwinPlatform *platform) { |
| 1426 | 1426 | } |
| 1427 | 1427 | } |
| 1428 | 1428 | |
| 1429 | | static bool darwin_version_lt(DarwinPlatform *platform, int major, int minor) { |
| 1430 | | if (platform->major < major) { |
| 1431 | | return true; |
| 1432 | | } else if (platform->major > major) { |
| 1433 | | return false; |
| 1434 | | } |
| 1435 | | if (platform->minor < minor) { |
| 1436 | | return true; |
| 1437 | | } |
| 1438 | | return false; |
| 1439 | | } |
| 1440 | | |
| 1441 | 1429 | static void construct_linker_job_macho(LinkJob *lj) { |
| 1442 | 1430 | CodeGen *g = lj->codegen; |
| 1443 | 1431 | |