#include "slibtool_driver_impl.h" #include "argv/argv.h" const struct argv_option slbt_default_options[] = { {"version", 0,TAG_VERSION,ARGV_OPTARG_NONE,0,0,0, "show version information"}, {"help", 'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,0,0,0, "show usage information"}, {"help-all", 'h',TAG_HELP_ALL,ARGV_OPTARG_NONE,0,0,0, "show comprehensive help information"}, {"mode", 0,TAG_MODE,ARGV_OPTARG_REQUIRED,0, "clean|compile|execute|finish" "|install|link|uninstall",0, "set the execution mode"}, {"dry-run", 'n',TAG_DRY_RUN,ARGV_OPTARG_NONE,0,0,0, "do not spawn any processes, " "do not make any changes to the file system"}, {"tag", 0,TAG_TAG,ARGV_OPTARG_REQUIRED,0, "CC|CXX",0, "a universal playground game"}, {"config", 0,TAG_CONFIG,ARGV_OPTARG_NONE,0,0,0, "display configuration information"}, {"debug", 0,TAG_DEBUG,ARGV_OPTARG_NONE,0,0,0, "display internal debug information"}, {"features", 0,TAG_FEATURES,ARGV_OPTARG_NONE,0,0,0, "show feature information"}, {"no-warnings", 0,TAG_WARNINGS,ARGV_OPTARG_NONE,0,0,0,""}, {"preserve-dup-deps", 0,TAG_DEPS,ARGV_OPTARG_NONE,0,0,0, "leave the dependency list alone"}, {"quiet", 0,TAG_SILENT,ARGV_OPTARG_NONE,0,0,0, "do not say anything"}, {"silent", 0,TAG_SILENT,ARGV_OPTARG_NONE,0,0,0, "say absolutely nothing"}, {"verbose", 0,TAG_VERBOSE,ARGV_OPTARG_NONE,0,0,0, "generate lots of informational messages " "that nobody can understand"}, {"host", 0,TAG_HOST,ARGV_OPTARG_REQUIRED,0,0,"", "set an explicit (cross-)host"}, {"flavor", 0,TAG_FLAVOR,ARGV_OPTARG_REQUIRED,0, "bsd|cygwin|darwin|linux|midipix|mingw", 0,"explicitly specify the host's flavor"}, {"ar", 0,TAG_AR,ARGV_OPTARG_REQUIRED,0,0,"", "explicitly specify the archiver to be used"}, {"ranlib", 0,TAG_RANLIB,ARGV_OPTARG_REQUIRED,0,0,"", "explicitly specify the librarian to be used"}, {"dlltool", 0,TAG_DLLTOOL,ARGV_OPTARG_REQUIRED,0,0,"", "explicitly specify the PE import library generator " "to be used"}, {"warnings", 0,TAG_WARNINGS,ARGV_OPTARG_REQUIRED,0, "all|none|error",0, "set the warning reporting level"}, {"W", 0,TAG_WARNINGS,ARGV_OPTARG_REQUIRED, ARGV_OPTION_HYBRID_ONLY|ARGV_OPTION_HYBRID_JOINED, "all|none|error","", "convenient shorthands for the above"}, {"output", 'o',TAG_OUTPUT,ARGV_OPTARG_REQUIRED,0,0,"", "write output to %s"}, {"target", 0,TAG_TARGET,ARGV_OPTARG_REQUIRED,0,0,"", "set an explicit (cross-)target, then pass it to " "the compiler"}, {"rpath", 0,TAG_RPATH,ARGV_OPTARG_REQUIRED, ARGV_OPTION_HYBRID_ONLY|ARGV_OPTION_HYBRID_SPACE,0,0, "where a library should eventually be " "installed, relative to $(DESTDIR)$(PREFIX)"}, {"version-info", 0,TAG_VERSION_INFO,ARGV_OPTARG_REQUIRED, ARGV_OPTION_HYBRID_ONLY|ARGV_OPTION_HYBRID_SPACE,0, "[:[:]]", "specify version information"}, {"no-suppress", 0,TAG_NO_SUPPRESS,ARGV_OPTARG_NONE, ARGV_OPTION_HYBRID_ONLY,0,0, "transparently forward all " "compiler-generated output"}, {"prefer-pic", 0,TAG_PREFER_PIC,ARGV_OPTARG_NONE, ARGV_OPTION_HYBRID_ONLY,0,0, "pick on non-PIC objects"}, {"prefer-non-pic", 0,TAG_PREFER_NON_PIC,ARGV_OPTARG_NONE, ARGV_OPTION_HYBRID_ONLY,0,0, "pick on PIC objects"}, {"shared", 0,TAG_SHARED,ARGV_OPTARG_NONE, ARGV_OPTION_HYBRID_ONLY,0,0, "only build .libs/srcfile.o"}, {"static", 0,TAG_STATIC,ARGV_OPTARG_NONE, ARGV_OPTION_HYBRID_ONLY,0,0, "only build ./srcfile.o"}, {"Wc", 0,TAG_COMPILER_FLAG,ARGV_OPTARG_REQUIRED, ARGV_OPTION_HYBRID_ONLY|ARGV_OPTION_HYBRID_COMMA, 0,"[,", "pass a raw flag to the compiler"}, {0,0,0,0,0,0,0,0} };