diff options
author | midipix <writeonce@midipix.org> | 2015-12-23 00:22:03 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:31 -0500 |
commit | 6848b7f8ed9521f9c4c36b62d4d204e693194cee (patch) | |
tree | c0146d23c021f7e49e4d618f1b7f1d101f15ba3c /src/skin | |
parent | 6691d883d212073b429b940edc8756b0179b4218 (diff) | |
download | mdso-6848b7f8ed9521f9c4c36b62d4d204e693194cee.tar.bz2 mdso-6848b7f8ed9521f9c4c36b62d4d204e693194cee.tar.xz |
driver: added --libpath option.
Diffstat (limited to 'src/skin')
-rw-r--r-- | src/skin/mdso_skin_default.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/skin/mdso_skin_default.c b/src/skin/mdso_skin_default.c index 8969023..3206e4f 100644 --- a/src/skin/mdso_skin_default.c +++ b/src/skin/mdso_skin_default.c @@ -11,6 +11,13 @@ const struct argv_option mdso_default_options[] = { {"machine", 'm',TAG_QUAD_PTR,ARGV_OPTARG_REQUIRED,"32|64",0, "set machine bits to %s"}, + {"libpath", 'l',TAG_LIBPATH,ARGV_OPTARG_REQUIRED,"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)."}, + {"libname", 'n',TAG_LIBNAME,ARGV_OPTARG_REQUIRED,0,"<libname>", "set dependency library name to %s"}, |