summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-02-11 19:17:03 -0500
committermidipix <writeonce@midipix.org>2017-02-11 19:23:15 -0500
commitdc40b9d14adf423c5cfc8380be1567f97da23b05 (patch)
tree69c4aa66d0a05f5da4d6674bf2547255bac9a483 /src
parentc70c0a72abe470aa16aefd47f1fdde5c4aa0718f (diff)
downloadmdso-dc40b9d14adf423c5cfc8380be1567f97da23b05.tar.bz2
mdso-dc40b9d14adf423c5cfc8380be1567f97da23b05.tar.xz
driver: options: move --libname up.
Diffstat (limited to 'src')
-rw-r--r--src/skin/mdso_skin_default.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/skin/mdso_skin_default.c b/src/skin/mdso_skin_default.c
index fdff8ad..4145696 100644
--- a/src/skin/mdso_skin_default.c
+++ b/src/skin/mdso_skin_default.c
@@ -11,6 +11,9 @@ const struct argv_option mdso_default_options[] = {
{"implib", 'i',TAG_IMPLIB,ARGV_OPTARG_REQUIRED,0,0,"<path>",
"create an import library archive"},
+ {"libname", 'n',TAG_LIBNAME,ARGV_OPTARG_REQUIRED,0,0,"<libname>",
+ "set dependency library name to %s"},
+
{"asm", 'a',TAG_ASM,ARGV_OPTARG_NONE,0,0,0,
"generate assembly sources"},
@@ -27,9 +30,6 @@ const struct argv_option mdso_default_options[] = {
"alternatively, the loader may only search for the library "
"in the system library directory (system32)."},
- {"libname", 'n',TAG_LIBNAME,ARGV_OPTARG_REQUIRED,0,0,"<libname>",
- "set dependency library name to %s"},
-
{"dstdir", 'd',TAG_DSTDIR,ARGV_OPTARG_REQUIRED,0,0,"<dstdir>",
"save generated assembly files under %s"},