summaryrefslogtreecommitdiff
path: root/xmake/languages/asm/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2018-02-01 22:58:23 +0800
committerruki <[email protected]>2018-02-01 11:50:22 +0800
commitea8eab3b9469101595502673dda4db42e167fcc0 (patch)
tree7c794f6ec0eb0013816ce89a8a25ee9293639bcc /xmake/languages/asm/xmake.lua
parent65b0ab3efb3b7a503804dc412189801431475dcd (diff)
improve cross complation configuration
Diffstat (limited to 'xmake/languages/asm/xmake.lua')
-rw-r--r--xmake/languages/asm/xmake.lua32
1 files changed, 18 insertions, 14 deletions
diff --git a/xmake/languages/asm/xmake.lua b/xmake/languages/asm/xmake.lua
index 1a1c0b2a3..a368375f3 100644
--- a/xmake/languages/asm/xmake.lua
+++ b/xmake/languages/asm/xmake.lua
@@ -118,22 +118,26 @@ language("asm")
set_menu {
config =
{
- {category = "Cross Complation Configuration/Compiler and Linker Configuration/Asm" }
- , {nil, "as", "kv", nil, "The Assembler" }
- , {nil, "ar", "kv", nil, "The Static Library Linker" }
- , {nil, "ld", "kv", nil, "The Linker" }
- , {nil, "sh", "kv", nil, "The Shared Library Linker" }
+ {category = "Cross Complation Configuration/Compiler Configuration" }
+ , {nil, "as", "kv", nil, "The Assembler" }
- , {category = "Cross Complation Configuration/Compiler and Linker Flags Configuration/Asm" }
- , {nil, "asflags", "kv", nil, "The Assembler Flags" }
- , {nil, "ldflags", "kv", nil, "The Binary Linker Flags" }
- , {nil, "arflags", "kv", nil, "The Static Library Linker Flags" }
- , {nil, "shflags", "kv", nil, "The Shared Library Linker Flags" }
+ , {category = "Cross Complation Configuration/Linker Configuration" }
+ , {nil, "ar", "kv", nil, "The Static Library Linker" }
+ , {nil, "ld", "kv", nil, "The Linker" }
+ , {nil, "sh", "kv", nil, "The Shared Library Linker" }
- , { }
- , {nil, "links", "kv", nil, "The Link Libraries" }
- , {nil, "linkdirs", "kv", nil, "The Link Search Directories" }
- , {nil, "includedirs","kv", nil, "The Include Search Directories" }
+ , {category = "Cross Complation Configuration/Compiler Flags Configuration" }
+ , {nil, "asflags", "kv", nil, "The Assembler Flags" }
+
+ , {category = "Cross Complation Configuration/Linker Flags Configuration" }
+ , {nil, "ldflags", "kv", nil, "The Binary Linker Flags" }
+ , {nil, "arflags", "kv", nil, "The Static Library Linker Flags" }
+ , {nil, "shflags", "kv", nil, "The Shared Library Linker Flags" }
+
+ , {category = "Cross Complation Configuration/Builin Flags Configuration" }
+ , {nil, "links", "kv", nil, "The Link Libraries" }
+ , {nil, "linkdirs", "kv", nil, "The Link Search Directories" }
+ , {nil, "includedirs","kv", nil, "The Include Search Directories" }
}
}