⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 g77spec.c

📁 gcc-2.95.3 Linux下最常用的C编译器
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Specific flags and argument handling of the Fortran front-end.   Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.This file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU CC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU CC; see the file COPYING.  If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  *//* This file contains a filter for the main `gcc' driver, which is   replicated for the `g77' driver by adding this filter.  The purpose   of this filter is to be basically identical to gcc (in that   it faithfully passes all of the original arguments to gcc) but,   unless explicitly overridden by the user in certain ways, ensure   that the needs of the language supported by this wrapper are met.   For GNU Fortran (g77), we do the following to the argument list   before passing it to `gcc':   1.  Make sure `-lg2c -lm' is at the end of the list.   2.  Make sure each time `-lg2c' or `-lm' is seen, it forms       part of the series `-lg2c -lm'.   #1 and #2 are not done if `-nostdlib' or any option that disables   the linking phase is present, or if `-xfoo' is in effect.  Note that   a lack of source files or -l options disables linking.   This program was originally made out of gcc/cp/g++spec.c, but the   way it builds the new argument list was rewritten so it is much   easier to maintain, improve the way it decides to add or not add   extra arguments, etc.  And several improvements were made in the   handling of arguments, primarily to make it more consistent with   `gcc' itself.  */#include "config.h"#include "system.h"#include <f/version.h>#ifndef MATH_LIBRARY#define MATH_LIBRARY "-lm"#endif#ifndef FORTRAN_LIBRARY#define FORTRAN_LIBRARY "-lg2c"#endif/* Options this driver needs to recognize, not just know how to   skip over.  */typedef enum{  OPTION_b,			/* Aka --prefix. */  OPTION_B,			/* Aka --target. */  OPTION_c,			/* Aka --compile. */  OPTION_driver,		/* Wrapper-specific option. */  OPTION_E,			/* Aka --preprocess. */  OPTION_help,			/* --help. */  OPTION_i,			/* -imacros, -include, -include-*. */  OPTION_l,  OPTION_L,			/* Aka --library-directory. */  OPTION_M,			/* Aka --dependencies. */  OPTION_MM,			/* Aka --user-dependencies. */  OPTION_nostdlib,		/* Aka --no-standard-libraries, or				   -nodefaultlibs. */  OPTION_o,			/* Aka --output. */  OPTION_S,			/* Aka --assemble. */  OPTION_syntax_only,		/* -fsyntax-only. */  OPTION_v,			/* Aka --verbose. */  OPTION_version,		/* --version. */  OPTION_V,			/* Aka --use-version. */  OPTION_x,			/* Aka --language. */  OPTION_			/* Unrecognized or unimportant. */} Option;/* The original argument list and related info is copied here.  */static int g77_xargc;static char **g77_xargv;static void (*g77_fn)();/* The new argument list will be built here.  */static int g77_newargc;static char **g77_newargv;extern char *version_string;/* --- This comes from gcc.c (2.8.1) verbatim: *//* This defines which switch letters take arguments.  */#define DEFAULT_SWITCH_TAKES_ARG(CHAR)      \  ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \   || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \   || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \   || (CHAR) == 'L' || (CHAR) == 'A')#ifndef SWITCH_TAKES_ARG#define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)#endif/* This defines which multi-letter switches take arguments.  */#define DEFAULT_WORD_SWITCH_TAKES_ARG(STR)		\ (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext")	\  || !strcmp (STR, "Tbss") || !strcmp (STR, "include")	\  || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \  || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \  || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \  || !strcmp (STR, "isystem") || !strcmp (STR, "specs"))#ifndef WORD_SWITCH_TAKES_ARG#define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)#endif/* --- End of verbatim.  *//* Assumes text[0] == '-'.  Returns number of argv items that belong to   (and follow) this one, an option id for options important to the   caller, and a pointer to the first char of the arg, if embedded (else   returns NULL, meaning no arg or it's the next argv).   Note that this also assumes gcc.c's pass converting long options   to short ones, where available, has already been run.  */static voidlookup_option (xopt, xskip, xarg, text)     Option *xopt;     int *xskip;     char **xarg;     char *text;{  Option opt = OPTION_;  int skip;  char *arg = NULL;  if ((skip = SWITCH_TAKES_ARG (text[1])))    skip -= (text[2] != '\0');	/* See gcc.c. */  if (text[1] == 'B')    opt = OPTION_B, skip = (text[2] == '\0'), arg = text + 2;  else if (text[1] == 'b')    opt = OPTION_b, skip = (text[2] == '\0'), arg = text + 2;  else if ((text[1] == 'c') && (text[2] == '\0'))    opt = OPTION_c, skip = 0;  else if ((text[1] == 'E') && (text[2] == '\0'))    opt = OPTION_E, skip = 0;  else if (text[1] == 'i')    opt = OPTION_i, skip = 0;  else if (text[1] == 'l')    opt = OPTION_l;  else if (text[1] == 'L')    opt = OPTION_L, arg = text + 2;  else if (text[1] == 'o')    opt = OPTION_o;  else if ((text[1] == 'S') && (text[2] == '\0'))    opt = OPTION_S, skip = 0;  else if (text[1] == 'V')    opt = OPTION_V, skip = (text[2] == '\0');  else if ((text[1] == 'v') && (text[2] == '\0'))    opt = OPTION_v, skip = 0;  else if (text[1] == 'x')    opt = OPTION_x, arg = text + 2;  else    {      if ((skip = WORD_SWITCH_TAKES_ARG (text + 1)) != 0)  /* See gcc.c. */	;      else if (! strncmp (text, "-fdriver", 8))  /* Really --driver!! */	opt = OPTION_driver;	/* Never mind arg, this is unsupported. */      else if (! strcmp (text, "-fhelp"))  /* Really --help!! */	opt = OPTION_help;      else if (! strcmp (text, "-M"))	opt = OPTION_M;      else if (! strcmp (text, "-MM"))	opt = OPTION_MM;      else if (! strcmp (text, "-nostdlib")	       || ! strcmp (text, "-nodefaultlibs"))	opt = OPTION_nostdlib;      else if (! strcmp (text, "-fsyntax-only"))	opt = OPTION_syntax_only;      else if (! strcmp (text, "-dumpversion"))	opt = OPTION_version;      else if (! strcmp (text, "-Xlinker")	       || ! strcmp (text, "-specs"))	skip = 1;      else	skip = 0;    }  if (xopt != NULL)    *xopt = opt;  if (xskip != NULL)    *xskip = skip;  if (xarg != NULL)    {      if ((arg != NULL)	  && (arg[0] == '\0'))	*xarg = NULL;      else	*xarg = arg;    }}/* Append another argument to the list being built.  As long as it is   identical to the corresponding arg in the original list, just increment   the new arg count.  Otherwise allocate a new list, etc.  */static voidappend_arg (arg)     char *arg;{  static int newargsize;#if 0  fprintf (stderr, "`%s'\n", arg);#endif  if (g77_newargv == g77_xargv      && g77_newargc < g77_xargc      && (arg == g77_xargv[g77_newargc]	  || ! strcmp (arg, g77_xargv[g77_newargc])))    {      ++g77_newargc;      return;			/* Nothing new here. */    }  if (g77_newargv == g77_xargv)    {				/* Make new arglist. */      int i;      newargsize = (g77_xargc << 2) + 20;	/* This should handle all. */      g77_newargv = (char **) xmalloc (newargsize * sizeof (char *));      /* Copy what has been done so far.  */      for (i = 0; i < g77_newargc; ++i)	g77_newargv[i] = g77_xargv[i];    }  if (g77_newargc == newargsize)    (*g77_fn) ("overflowed output arg list for `%s'", arg);  g77_newargv[g77_newargc++] = arg;}voidlang_specific_driver (fn, in_argc, in_argv, in_added_libraries)     void (*fn)();     int *in_argc;     char ***in_argv;     int *in_added_libraries;{  int argc = *in_argc;  char **argv = *in_argv;  int i;  int verbose = 0;  Option opt;  int skip;  char *arg;  /* This will be NULL if we encounter a situation where we should not     link in libf2c.  */  char *library = FORTRAN_LIBRARY;  /* This will become 0 if anything other than -v and kin (like -V)     is seen, meaning the user is trying to accomplish something.     If it remains nonzero, and the user wants version info, add stuff to     the command line to make gcc invoke all the appropriate phases     to get all the version info.  */  int add_version_magic = 1;  /* 0 => -xnone in effect.     1 => -xfoo in effect.  */  int saw_speclang = 0;  /* 0 => initial/reset state     1 => last arg was -l<library>     2 => last two args were -l<library> -lm.  */  int saw_library = 0;  /* By default, we throw on the math library if we have one.  */  int need_math = (MATH_LIBRARY[0] != '\0');  /* The number of input and output files in the incoming arg list.  */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -