| ... | ... | @@ -45,7 +45,7 @@ static int print_full_usage(const char *arg0, FILE *file, int return_code) { |
| 45 | 45 | " -OReleaseFast build with optimizations on and safety off\n" |
| 46 | 46 | " -OReleaseSafe build with optimizations on and safety on\n" |
| 47 | 47 | " -OReleaseSmall build with size optimizations on and safety off\n" |
| 48 | | " --single-threaded source may assume it is only used single-threaded\n" |
| 48 | " -fsingle-threaded source may assume it is only used single-threaded\n" |
| 49 | 49 | " -dynamic create a shared library (.so; .dll; .dylib)\n" |
| 50 | 50 | " --strip exclude debug symbols\n" |
| 51 | 51 | " -target [name] <arch>-<os>-<abi> see the targets command\n" |
| ... | ... | @@ -282,7 +282,7 @@ int main(int argc, char **argv) { |
| 282 | 282 | optimize_mode = BuildModeSafeRelease; |
| 283 | 283 | } else if (strcmp(arg, "-OReleaseSmall") == 0) { |
| 284 | 284 | optimize_mode = BuildModeSmallRelease; |
| 285 | | } else if (strcmp(arg, "--single-threaded") == 0) { |
| 285 | } else if (strcmp(arg, "-fsingle-threaded") == 0) { |
| 286 | 286 | single_threaded = true; |
| 287 | 287 | } else if (strcmp(arg, "--help") == 0) { |
| 288 | 288 | return print_full_usage(arg0, stdout, EXIT_SUCCESS); |