| ... | @@ -435,12 +435,12 @@ const usage_build_generic = | ... | @@ -435,12 +435,12 @@ const usage_build_generic = |
| 435 | \\ -fno-dll-export-fns Force-disable marking exported functions as DLL exports | 435 | \\ -fno-dll-export-fns Force-disable marking exported functions as DLL exports |
| 436 | \\ -funwind-tables Always produce unwind table entries for all functions | 436 | \\ -funwind-tables Always produce unwind table entries for all functions |
| 437 | \\ -fno-unwind-tables Never produce unwind table entries | 437 | \\ -fno-unwind-tables Never produce unwind table entries |
| 438 | \\ -fLLVM Force using LLVM as the codegen backend | 438 | \\ -fllvm Force using LLVM as the codegen backend |
| 439 | \\ -fno-LLVM Prevent using LLVM as the codegen backend | 439 | \\ -fno-llvm Prevent using LLVM as the codegen backend |
| 440 | \\ -flibLLVM Force using the LLVM API in the codegen backend | 440 | \\ -flibllvm Force using the LLVM API in the codegen backend |
| 441 | \\ -fno-libLLVM Prevent using the LLVM API in the codegen backend | 441 | \\ -fno-libllvm Prevent using the LLVM API in the codegen backend |
| 442 | \\ -fClang Force using Clang as the C/C++ compilation backend | 442 | \\ -fclang Force using Clang as the C/C++ compilation backend |
| 443 | \\ -fno-Clang Prevent using Clang as the C/C++ compilation backend | 443 | \\ -fno-clang Prevent using Clang as the C/C++ compilation backend |
| 444 | \\ -freference-trace[=num] How many lines of reference trace should be shown per compile error | 444 | \\ -freference-trace[=num] How many lines of reference trace should be shown per compile error |
| 445 | \\ -fno-reference-trace Disable reference trace | 445 | \\ -fno-reference-trace Disable reference trace |
| 446 | \\ -ferror-tracing Enable error tracing in ReleaseFast mode | 446 | \\ -ferror-tracing Enable error tracing in ReleaseFast mode |
| ... | @@ -486,8 +486,8 @@ const usage_build_generic = | ... | @@ -486,8 +486,8 @@ const usage_build_generic = |
| 486 | \\ --force_undefined [name] Specify the symbol must be defined for the link to succeed | 486 | \\ --force_undefined [name] Specify the symbol must be defined for the link to succeed |
| 487 | \\ -fsoname[=name] Override the default SONAME value | 487 | \\ -fsoname[=name] Override the default SONAME value |
| 488 | \\ -fno-soname Disable emitting a SONAME | 488 | \\ -fno-soname Disable emitting a SONAME |
| 489 | \\ -fLLD Force using LLD as the linker | 489 | \\ -flld Force using LLD as the linker |
| 490 | \\ -fno-LLD Prevent using LLD as the linker | 490 | \\ -fno-lld Prevent using LLD as the linker |
| 491 | \\ -fcompiler-rt Always include compiler-rt symbols in output | 491 | \\ -fcompiler-rt Always include compiler-rt symbols in output |
| 492 | \\ -fno-compiler-rt Prevent including compiler-rt symbols in output | 492 | \\ -fno-compiler-rt Prevent including compiler-rt symbols in output |
| 493 | \\ -rdynamic Add all symbols to the dynamic symbol table | 493 | \\ -rdynamic Add all symbols to the dynamic symbol table |
| ... | @@ -1262,21 +1262,21 @@ fn buildOutputType( | ... | @@ -1262,21 +1262,21 @@ fn buildOutputType( |
| 1262 | want_tsan = true; | 1262 | want_tsan = true; |
| 1263 | } else if (mem.eql(u8, arg, "-fno-sanitize-thread")) { | 1263 | } else if (mem.eql(u8, arg, "-fno-sanitize-thread")) { |
| 1264 | want_tsan = false; | 1264 | want_tsan = false; |
| 1265 | } else if (mem.eql(u8, arg, "-fLLVM")) { | 1265 | } else if (mem.eql(u8, arg, "-fllvm")) { |
| 1266 | use_llvm = true; | 1266 | use_llvm = true; |
| 1267 | } else if (mem.eql(u8, arg, "-fno-LLVM")) { | 1267 | } else if (mem.eql(u8, arg, "-fno-llvm")) { |
| 1268 | use_llvm = false; | 1268 | use_llvm = false; |
| 1269 | } else if (mem.eql(u8, arg, "-flibLLVM")) { | 1269 | } else if (mem.eql(u8, arg, "-flibllvm")) { |
| 1270 | use_lib_llvm = true; | 1270 | use_lib_llvm = true; |
| 1271 | } else if (mem.eql(u8, arg, "-fno-libLLVM")) { | 1271 | } else if (mem.eql(u8, arg, "-fno-libllvm")) { |
| 1272 | use_lib_llvm = false; | 1272 | use_lib_llvm = false; |
| 1273 | } else if (mem.eql(u8, arg, "-fLLD")) { | 1273 | } else if (mem.eql(u8, arg, "-flld")) { |
| 1274 | use_lld = true; | 1274 | use_lld = true; |
| 1275 | } else if (mem.eql(u8, arg, "-fno-LLD")) { | 1275 | } else if (mem.eql(u8, arg, "-fno-lld")) { |
| 1276 | use_lld = false; | 1276 | use_lld = false; |
| 1277 | } else if (mem.eql(u8, arg, "-fClang")) { | 1277 | } else if (mem.eql(u8, arg, "-fclang")) { |
| 1278 | use_clang = true; | 1278 | use_clang = true; |
| 1279 | } else if (mem.eql(u8, arg, "-fno-Clang")) { | 1279 | } else if (mem.eql(u8, arg, "-fno-clang")) { |
| 1280 | use_clang = false; | 1280 | use_clang = false; |
| 1281 | } else if (mem.eql(u8, arg, "-freference-trace")) { | 1281 | } else if (mem.eql(u8, arg, "-freference-trace")) { |
| 1282 | reference_trace = 256; | 1282 | reference_trace = 256; |