Add rust features to print target features
`crt-static` is a rust specific target feature that's absent from llvm feature table, adding it there.
This commit is contained in:
parent
4fb54ed484
commit
e32db84584
1 changed files with 3 additions and 0 deletions
|
@ -425,6 +425,9 @@ extern "C" void LLVMRustPrintTargetFeatures(LLVMTargetMachineRef TM) {
|
|||
for (auto &Feature : FeatTable)
|
||||
printf(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc);
|
||||
printf("\n");
|
||||
// Rust specific target features
|
||||
printf(" %-*s - %s.\n", MaxFeatLen, "crt-static", "Enables libraries with C Run-time Libraries(CRT) to be statically linked");
|
||||
printf("\n");
|
||||
|
||||
printf("Use +feature to enable a feature, or -feature to disable it.\n"
|
||||
"For example, rustc -C -target-cpu=mycpu -C "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue