diff options
author | midipix <writeonce@midipix.org> | 2016-04-16 09:35:23 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-16 09:35:23 -0400 |
commit | b762215f29ea3746f6c56d15034b0cc7de418788 (patch) | |
tree | f92a596a3dbc7658995ab33026d7abab59b8f45b | |
parent | 523027d6556bfaec8ae90ad7114405daaa336573 (diff) | |
download | slibtool-b762215f29ea3746f6c56d15034b0cc7de418788.tar.bz2 slibtool-b762215f29ea3746f6c56d15034b0cc7de418788.tar.xz |
driver: added -no-install support [no-op].
-rw-r--r-- | src/internal/slibtool_driver_impl.h | 1 | ||||
-rw-r--r-- | src/skin/slbt_skin_default.c | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/internal/slibtool_driver_impl.h b/src/internal/slibtool_driver_impl.h index 8e64e1e..466a4b3 100644 --- a/src/internal/slibtool_driver_impl.h +++ b/src/internal/slibtool_driver_impl.h @@ -40,6 +40,7 @@ enum app_tags { TAG_VERSION_INFO, TAG_VERSION_NUMBER, TAG_NO_SUPPRESS, + TAG_NO_INSTALL, TAG_PREFER_PIC, TAG_PREFER_NON_PIC, TAG_SHARED, diff --git a/src/skin/slbt_skin_default.c b/src/skin/slbt_skin_default.c index 996c9cc..a0bf918 100644 --- a/src/skin/slbt_skin_default.c +++ b/src/skin/slbt_skin_default.c @@ -134,6 +134,12 @@ const struct argv_option slbt_default_options[] = { "transparently forward all " "compiler-generated output"}, + {"no-install", 0,TAG_NO_INSTALL,ARGV_OPTARG_NONE, + ARGV_OPTION_HYBRID_ONLY,0,0, + "consider the executable image wrapper " + "to be optional " + "[currently a no-op]"}, + {"prefer-pic", 0,TAG_PREFER_PIC,ARGV_OPTARG_NONE, ARGV_OPTION_HYBRID_ONLY,0,0, "pick on non-PIC objects"}, |