diff options
| author | ruki <[email protected]> | 2020-05-16 10:59:10 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-05-16 10:59:10 +0800 |
| commit | d021df166bfd45c2d18ae6fa39cd685006491d01 (patch) | |
| tree | 00ae776fe15fc6f70c30877b1b2eaeba2cd3d4f8 /xmake/languages/rust/xmake.lua | |
| parent | 87a0828f8d20d3a1a83aed640e6e77560668e488 (diff) | |
rename dlang, rust, swift, go ldflags
Diffstat (limited to 'xmake/languages/rust/xmake.lua')
| -rw-r--r-- | xmake/languages/rust/xmake.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake/languages/rust/xmake.lua b/xmake/languages/rust/xmake.lua index 8afd1ea7a..044ed0111 100644 --- a/xmake/languages/rust/xmake.lua +++ b/xmake/languages/rust/xmake.lua @@ -28,7 +28,7 @@ language("rust") set_sourceflags {rc = "rcflags"} -- set target kinds - set_targetkinds {binary = "rc-ld", static = "rc-ar", shared = "rc-sh"} + set_targetkinds {binary = "rcld", static = "rcar", shared = "rcsh"} -- set target flags set_targetflags {binary = "ldflags", static = "arflags", shared = "shflags"} @@ -94,9 +94,9 @@ language("rust") , {nil, "rc", "kv", nil, "The Rust Compiler" } , {category = "Cross Complation Configuration/Linker Configuration" } - , {nil, "rc-ld", "kv", nil, "The Rust Linker" } - , {nil, "rc-ar", "kv", nil, "The Rust Static Library Archiver" } - , {nil, "rc-sh", "kv", nil, "The Rust Shared Library Linker" } + , {nil, "rcld", "kv", nil, "The Rust Linker" } + , {nil, "rcar", "kv", nil, "The Rust Static Library Archiver" } + , {nil, "rcsh", "kv", nil, "The Rust Shared Library Linker" } , {category = "Cross Complation Configuration/Builtin Flags Configuration" } , {nil, "linkdirs", "kv", nil, "The Link Search Directories" } |
