-ldflags option removed for removed prebuilt runtime library
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6025 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
8b9941eacd
commit
85ae8dd377
9 changed files with 1 additions and 38 deletions
|
|
@ -35,7 +35,6 @@ CHICKEN Options (available with -chicken)\n\
|
|||
dash seperated, lower case (ex. a-method-name)\n\
|
||||
-noclos - Don't generate clos TinyCLOS code\n\
|
||||
-nogeneric - Don't generate (make-generic) definitions\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
\n"
|
||||
;
|
||||
|
||||
|
|
@ -176,10 +175,6 @@ CHICKEN::main(int argc, char *argv[])
|
|||
generic = 0;
|
||||
Swig_mark_arg(i);
|
||||
}
|
||||
else if (strcmp(argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_CHICKEN_RUNTIME);
|
||||
SWIG_exit(EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ char cvsroot_guile_cxx[] = "$Header$";
|
|||
// Note string broken in half for compilers that can't handle long strings
|
||||
static const char *guile_usage = (char*)"\
|
||||
Guile Options (available with -guile)\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
-prefix <name> - Use <name> as prefix [default \"gswig_\"]\n\
|
||||
-package <name> - Set the path of the module to <name>\n\
|
||||
(default NULL)\n\
|
||||
|
|
@ -169,10 +168,6 @@ public:
|
|||
Swig_arg_error();
|
||||
}
|
||||
}
|
||||
else if (strcmp (argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", use_scm_interface ? SWIG_GUILESCM_RUNTIME : SWIG_GUILE_RUNTIME);
|
||||
SWIG_exit (EXIT_SUCCESS);
|
||||
}
|
||||
else if (strcmp (argv[i], "-Linkage") == 0
|
||||
|| strcmp (argv[i], "-linkage") == 0) {
|
||||
if (argv[i + 1]) {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@ char cvsroot_mzscheme_cxx[] = "$Header$";
|
|||
|
||||
static const char *usage = (char*)"\
|
||||
Mzscheme Options (available with -mzscheme)\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
-prefix <name> - Set a prefix <name> to be prepended to all names\n\
|
||||
-declaremodule - Create extension that declares a module\n\
|
||||
-noinit - Do not emit scheme_initialize, scheme_reload,\n\
|
||||
|
|
@ -86,9 +85,6 @@ public:
|
|||
} else if (strcmp (argv[i], "-noinit") == 0) {
|
||||
noinit = true;
|
||||
Swig_mark_arg (i);
|
||||
} else if (strcmp (argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_MZSCHEME_RUNTIME);
|
||||
SWIG_exit (EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ char cvsroot_perl5_cxx[] = "$Header$";
|
|||
|
||||
static const char *usage = (char*)"\
|
||||
Perl5 Options (available with -perl5)\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
-static - Omit code related to dynamic loading\n\
|
||||
-nopm - Do not generate the .pm file\n\
|
||||
-proxy - Create proxy classes\n\
|
||||
|
|
@ -160,9 +159,6 @@ public:
|
|||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-help") == 0) {
|
||||
fputs(usage,stderr);
|
||||
} else if (strcmp (argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_PERL_RUNTIME);
|
||||
SWIG_exit (EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ char cvsroot_php4_cxx[] = "$Header$";
|
|||
|
||||
static const char *usage = (char*)"\
|
||||
PHP4 Options (available with -php4)\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
-cppext - cpp file extension (default to .cpp)\n\
|
||||
-noproxy - Don't generate proxy classes.\n\
|
||||
-dlname <name> - Set module prefix to <name>\n\
|
||||
|
|
@ -311,9 +310,6 @@ public:
|
|||
Swig_mark_arg(i);
|
||||
} else if(strcmp(argv[i], "-help") == 0) {
|
||||
fputs(usage, stderr);
|
||||
} else if (strcmp (argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_PHP_RUNTIME);
|
||||
SWIG_exit (EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ char cvsroot_pike_cxx[] = "$Header$";
|
|||
|
||||
static const char *usage = (char *)"\
|
||||
Pike Options (available with -pike)\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
[None]\n\
|
||||
\n";
|
||||
|
||||
class PIKE : public Language {
|
||||
|
|
@ -87,9 +87,6 @@ public:
|
|||
if (argv[i]) {
|
||||
if (strcmp(argv[i],"-help") == 0) {
|
||||
fputs(usage,stderr);
|
||||
} else if (strcmp (argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_PIKE_RUNTIME);
|
||||
SWIG_exit(EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,7 +53,6 @@ static String *real_classname;
|
|||
|
||||
static const char *usage = (char *)"\
|
||||
Python Options (available with -python)\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
-globals <name> - Set <name> used to access C global variable [default: 'cvar']\n\
|
||||
-interface <lib>- Set the lib name to <lib>\n\
|
||||
-keyword - Use keyword arguments\n\
|
||||
|
|
@ -123,9 +122,6 @@ public:
|
|||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-help") == 0) {
|
||||
fputs(usage,stderr);
|
||||
} else if (strcmp (argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_PYTHON_RUNTIME);
|
||||
SWIG_exit (EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -119,7 +119,6 @@ char cvsroot_ruby_cxx[] = "$Header$";
|
|||
static const char *
|
||||
usage = "\
|
||||
Ruby Options (available with -ruby)\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
-globalmodule - Wrap everything into the global module\n\
|
||||
-minherit - Attempt to support multiple inheritance\n\
|
||||
-feature <name> - Set feature name to <name> (used by `require')\n";
|
||||
|
|
@ -222,9 +221,6 @@ public:
|
|||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-help") == 0) {
|
||||
Printf(stderr,"%s\n", usage);
|
||||
} else if (strcmp (argv[i],"-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_RUBY_RUNTIME);
|
||||
SWIG_exit (EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@ char cvsroot_tcl8_cxx[] = "$Header$";
|
|||
static const char *usage = (char*)"\
|
||||
Tcl 8 Options (available with -tcl)\n\
|
||||
-itcl - Enable ITcl support\n\
|
||||
-ldflags - Print runtime libraries to link with\n\
|
||||
-nosafe - Leave out SafeInit module function.\n\
|
||||
-prefix <name> - Set a prefix <name> to be prepended to all names\n\
|
||||
-namespace - Build module into a Tcl 8 namespace\n\
|
||||
|
|
@ -115,9 +114,6 @@ public:
|
|||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-help") == 0) {
|
||||
fputs(usage,stderr);
|
||||
} else if (strcmp (argv[i], "-ldflags") == 0) {
|
||||
printf("%s\n", SWIG_TCL_RUNTIME);
|
||||
SWIG_exit (EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue