summaryrefslogtreecommitdiffhomepage
path: root/src/skin
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-06-04 08:00:56 -0400
committermidipix <writeonce@midipix.org>2018-06-04 08:00:56 -0400
commit313f34ae264eaf73988d16b66d963ef771e96e36 (patch)
tree79bc3b35fae09ce79747b09fc260e2d6e4c9abd7 /src/skin
parent9bfad0da72fbc4e30bbe48e5a2a88c811ac2a375 (diff)
downloadmdso-313f34ae264eaf73988d16b66d963ef771e96e36.tar.bz2
mdso-313f34ae264eaf73988d16b66d963ef771e96e36.tar.xz
mdso flags: added MDSO_FLAG_LDSO_LIB as a reference to the loader lib. itself.
Diffstat (limited to 'src/skin')
-rw-r--r--src/skin/mdso_skin_default.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/skin/mdso_skin_default.c b/src/skin/mdso_skin_default.c
index 4145696..0c3fd85 100644
--- a/src/skin/mdso_skin_default.c
+++ b/src/skin/mdso_skin_default.c
@@ -23,12 +23,17 @@ const struct argv_option mdso_default_options[] = {
{"machine", 'm',TAG_QUAD_PTR,ARGV_OPTARG_REQUIRED,0,"32|64",0,
"set machine bits to %s"},
- {"libpath", 'l',TAG_LIBPATH,ARGV_OPTARG_REQUIRED,0,"loader|peb|system32",0,
- "runtime loader should search for the library either "
- "according to its internal/inherited path (loader), "
- "or according to the library path in the process PEB block (peb); "
- "alternatively, the loader may only search for the library "
- "in the system library directory (system32)."},
+ {"libpath", 'l',TAG_LIBPATH,ARGV_OPTARG_REQUIRED,0,
+ "loader|ldso|peb|system32",0,
+ "indicate that this is the runtime loader "
+ "itself (ldso); otherwise, specify that the "
+ "runtime loader should search for the library "
+ "either according to its internal/inherited "
+ "path (loader), or according to the library "
+ "path in the process PEB block (peb); "
+ "alternatively, the loader may only search "
+ "for the library in the system library "
+ "directory (system32)."},
{"dstdir", 'd',TAG_DSTDIR,ARGV_OPTARG_REQUIRED,0,0,"<dstdir>",
"save generated assembly files under %s"},