diff options
author | midipix <writeonce@midipix.org> | 2016-03-16 04:11:43 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-16 04:11:43 -0400 |
commit | e392816f5909c456e013bf0a2747cdc65299b3da (patch) | |
tree | f65cf983c954cba0b276fea3910b4b7bc876fc3e | |
parent | 302dac82fec3efe97f9585cb94d7ac8753107e7f (diff) | |
download | slibtool-e392816f5909c456e013bf0a2747cdc65299b3da.tar.bz2 slibtool-e392816f5909c456e013bf0a2747cdc65299b3da.tar.xz |
driver: accept --target as either a utility option or a compiler argument.
-rw-r--r-- | src/skin/slbt_skin_default.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/skin/slbt_skin_default.c b/src/skin/slbt_skin_default.c index 99ab7e6..564d577 100644 --- a/src/skin/slbt_skin_default.c +++ b/src/skin/slbt_skin_default.c @@ -48,10 +48,6 @@ const struct argv_option slbt_default_options[] = { "generate lots of informational messages " "that nobody can understand"}, - {"target", 0,TAG_TARGET,ARGV_OPTARG_REQUIRED,0,0,"<target>", - "set an explicit (cross-)target, then pass it to " - "the compiler"}, - {"host", 0,TAG_HOST,ARGV_OPTARG_REQUIRED,0,0,"<host>", "set an explicit (cross-)host"}, @@ -81,6 +77,10 @@ const struct argv_option slbt_default_options[] = { {"output", 'o',TAG_OUTPUT,ARGV_OPTARG_REQUIRED,0,0,"<file>", "write output to %s"}, + {"target", 0,TAG_TARGET,ARGV_OPTARG_REQUIRED,0,0,"<target>", + "set an explicit (cross-)target, then pass it to " + "the compiler"}, + {"no-suppress", 0,TAG_NO_SUPPRESS,ARGV_OPTARG_NONE, ARGV_OPTION_HYBRID_ONLY,0,0, "transparently forward all " |