亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? gcc.c

?? 這是完整的gcc源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號(hào):
}voidclear_failure_queue (){  failure_delete_queue = 0;}/* Compute a string to use as the base of all temporary file names.   It is substituted for %g.  */voidchoose_temp_base (){  extern char *getenv ();  char *base = getenv ("TMPDIR");  int len;  if (base == (char *)0)    {#ifdef P_tmpdir      if (access (P_tmpdir, R_OK | W_OK) == 0)	base = P_tmpdir;#endif      if (base == (char *)0)	{	  if (access ("/usr/tmp", R_OK | W_OK) == 0)	    base = "/usr/tmp/";	  else	    base = "/tmp/";	}    }  len = strlen (base);  temp_filename = (char *) xmalloc (len + sizeof("/ccXXXXXX"));  strcpy (temp_filename, base);  if (len > 0 && temp_filename[len-1] != '/')    temp_filename[len++] = '/';  strcpy (temp_filename + len, "ccXXXXXX");  mktemp (temp_filename);  temp_filename_length = strlen (temp_filename);}/* Search for an execute file through our search path.   Return 0 if not found, otherwise return its name, allocated with malloc.  */static char *find_exec_file (prog)     char *prog;{  int win = 0;  char *temp;  int size;  size = strlen (standard_exec_prefix);  if (user_exec_prefix != 0 && strlen (user_exec_prefix) > size)    size = strlen (user_exec_prefix);  if (env_exec_prefix != 0 && strlen (env_exec_prefix) > size)    size = strlen (env_exec_prefix);  if (strlen (standard_exec_prefix_1) > size)    size = strlen (standard_exec_prefix_1);  size += strlen (prog) + 1;  if (machine_suffix)    size += strlen (machine_suffix) + 1;  temp = (char *) xmalloc (size);  /* Determine the filename to execute.  */  if (user_exec_prefix)    {      if (machine_suffix)	{	  strcpy (temp, user_exec_prefix);	  strcat (temp, machine_suffix);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}      if (!win)	{	  strcpy (temp, user_exec_prefix);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}    }  if (!win && env_exec_prefix)    {      if (machine_suffix)	{	  strcpy (temp, env_exec_prefix);	  strcat (temp, machine_suffix);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}      if (!win)	{	  strcpy (temp, env_exec_prefix);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}    }  if (!win)    {      if (machine_suffix)	{	  strcpy (temp, standard_exec_prefix);	  strcat (temp, machine_suffix);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}      if (!win)	{	  strcpy (temp, standard_exec_prefix);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}    }  if (!win)    {      if (machine_suffix)	{	  strcpy (temp, standard_exec_prefix_1);	  strcat (temp, machine_suffix);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}      if (!win)	{	  strcpy (temp, standard_exec_prefix_1);	  strcat (temp, prog);	  win = (access (temp, X_OK) == 0);	}    }  if (win)    return temp;  else    return 0;}/* stdin file number.  */#define STDIN_FILE_NO 0/* stdout file number.  */#define STDOUT_FILE_NO 1/* value of `pipe': port index for reading.  */#define READ_PORT 0/* value of `pipe': port index for writing.  */#define WRITE_PORT 1/* Pipe waiting from last process, to be used as input for the next one.   Value is STDIN_FILE_NO if no pipe is waiting   (i.e. the next command is the first of a group).  */int last_pipe_input;/* Fork one piped subcommand.  FUNC is the system call to use   (either execv or execvp).  ARGV is the arg vector to use.   NOT_LAST is nonzero if this is not the last subcommand   (i.e. its output should be piped to the next one.)  */static intpexecute (func, program, argv, not_last)     char *program;     int (*func)();     char *argv[];     int not_last;{  int pid;  int pdes[2];  int input_desc = last_pipe_input;  int output_desc = STDOUT_FILE_NO;  /* If this isn't the last process, make a pipe for its output,     and record it as waiting to be the input to the next process.  */  if (not_last)    {      if (pipe (pdes) < 0)	pfatal_with_name ("pipe");      output_desc = pdes[WRITE_PORT];      last_pipe_input = pdes[READ_PORT];    }  else    last_pipe_input = STDIN_FILE_NO;  pid = vfork ();  switch (pid)    {    case -1:      pfatal_with_name ("vfork");      break;    case 0: /* child */      /* Move the input and output pipes into place, if nec.  */      if (input_desc != STDIN_FILE_NO)	{	  close (STDIN_FILE_NO);	  dup (input_desc);	  close (input_desc);	}      if (output_desc != STDOUT_FILE_NO)	{	  close (STDOUT_FILE_NO);	  dup (output_desc);	  close (output_desc);	}      /* Close the parent's descs that aren't wanted here.  */      if (last_pipe_input != STDIN_FILE_NO)	close (last_pipe_input);      /* Exec the program.  */      (*func) (program, argv);      perror_exec (program);      exit (-1);      /* NOTREACHED */    default:      /* In the parent, after forking.	 Close the descriptors that we made for this child.  */      if (input_desc != STDIN_FILE_NO)	close (input_desc);      if (output_desc != STDOUT_FILE_NO)	close (output_desc);      /* Return child's process number.  */      return pid;    }}/* Execute the command specified by the arguments on the current line of spec.   When using pipes, this includes several piped-together commands   with `|' between them.   Return 0 if successful, -1 if failed.  */intexecute (){  int i, j;  int n_commands;		/* # of command.  */  char *string;  struct command    {      char *prog;		/* program name.  */      char **argv;		/* vector of args.  */      int pid;			/* pid of process for this command.  */    };  struct command *commands;	/* each command buffer with above info.  */  /* Count # of piped commands.  */  for (n_commands = 1, i = 0; i < argbuf_index; i++)    if (strcmp (argbuf[i], "|") == 0)      n_commands++;  /* Get storage for each command.  */  commands    = (struct command *) alloca (n_commands * sizeof (struct command));  /* Split argbuf into its separate piped processes,     and record info about each one.     Also search for the programs that are to be run.  */  commands[0].prog = argbuf[0]; /* first command.  */  commands[0].argv = &argbuf[0];  string = find_exec_file (commands[0].prog);  if (string)    commands[0].argv[0] = string;  for (n_commands = 1, i = 0; i < argbuf_index; i++)    if (strcmp (argbuf[i], "|") == 0)      {				/* each command.  */	argbuf[i] = 0;	/* termination of command args.  */	commands[n_commands].prog = argbuf[i + 1];	commands[n_commands].argv = &argbuf[i + 1];	string = find_exec_file (commands[n_commands].prog);	if (string)	  commands[n_commands].argv[0] = string;	n_commands++;      }  argbuf[argbuf_index] = 0;  /* If -v, print what we are about to do, and maybe query.  */  if (vflag)    {      /* Print each piped command as a separate line.  */      for (i = 0; i < n_commands ; i++)	{	  char **j;	  for (j = commands[i].argv; *j; j++)	    fprintf (stderr, " %s", *j);	  /* Print a pipe symbol after all but the last command.  */	  if (i + 1 != n_commands)	    fprintf (stderr, " |");	  fprintf (stderr, "\n");	}      fflush (stderr);#ifdef DEBUG      fprintf (stderr, "\nGo ahead? (y or n) ");      fflush (stderr);      j = getchar ();      if (j != '\n')	while (getchar () != '\n') ;      if (j != 'y' && j != 'Y')	return 0;#endif /* DEBUG */    }  /* Run each piped subprocess.  */  last_pipe_input = STDIN_FILE_NO;  for (i = 0; i < n_commands; i++)    {      extern int execv(), execvp();      char *string = commands[i].argv[0];      commands[i].pid = pexecute ((string != commands[i].prog ? execv : execvp),				  string, commands[i].argv,				  i + 1 < n_commands);      if (string != commands[i].prog)	free (string);    }  execution_count++;  /* Wait for all the subprocesses to finish.     We don't care what order they finish in;     we know that N_COMMANDS waits will get them all.  */  {    int ret_code = 0;    for (i = 0; i < n_commands; i++)      {	int status;	int pid;	char *prog;	pid = wait (&status);	if (pid < 0)	  abort ();	if (status != 0)	  {	    int j;	    for (j = 0; j < n_commands; j++)	      if (commands[j].pid == pid)		prog = commands[j].prog;	    if ((status & 0x7F) != 0)	      fatal ("Program %s got fatal signal %d.", prog, (status & 0x7F));	    if (((status & 0xFF00) >> 8) >= MIN_FATAL_STATUS)	      ret_code = -1;	  }      }    return ret_code;  }}/* Find all the switches given to us   and make a vector describing them.   The elements of the vector a strings, one per switch given.   If a switch uses the following argument, then the `part1' field   is the switch itself and the `part2' field is the following argument.   The `valid' field is nonzero if any spec has looked at this switch;   if it remains zero at the end of the run, it must be meaningless.  */struct switchstr{  char *part1;  char *part2;  int valid;};struct switchstr *switches;int n_switches;/* Also a vector of input files specified.  */char **infiles;int n_infiles;/* And a vector of corresponding output files is made up later.  */char **outfiles;/* Create the vector `switches' and its contents.   Store its length in `n_switches'.  */voidprocess_command (argc, argv)     int argc;     char **argv;{  extern char *getenv ();  register int i;  n_switches = 0;  n_infiles = 0;  env_exec_prefix = getenv ("GCC_EXEC_PREFIX");  /* Scan argv twice.  Here, the first time, just count how many switches     there will be in their vector, and how many input files in theirs.     Here we also parse the switches that cc itself uses (e.g. -v).  */  for (i = 1; i < argc; i++)    {      if (argv[i][0] == '-' && argv[i][1] != 'l')	{	  register char *p = &argv[i][1];	  register int c = *p;	  switch (c)	    {	    case 'b':	      machine_suffix = p + 1;	      break;	    case 'B':	      user_exec_prefix = p + 1;	      break;	    case 'v':	/* Print our subcommands and print versions.  */	      vflag++;	      n_switches++;	      break;	    default:	      n_switches++;	      if (SWITCH_TAKES_ARG (c) && p[1] == 0)		i++;	      else if (WORD_SWITCH_TAKES_ARG (p))		i++;	    }	}      else	n_infiles++;    }  /* Then create the space for the vectors and scan again.  */  switches = ((struct switchstr *)	      xmalloc ((n_switches + 1) * sizeof (struct switchstr)));  infiles = (char **) xmalloc ((n_infiles + 1) * sizeof (char *));  n_switches = 0;  n_infiles = 0;  /* This, time, copy the text of each switch and store a pointer     to the copy in the vector of switches.     Store all the infiles in their vector.  */  for (i = 1; i < argc; i++)    {      if (argv[i][0] == '-' && argv[i][1] != 'l')	{	  register char *p = &argv[i][1];	  register int c = *p;	  if (c == 'B' || c == 'b')	    continue;	  switches[n_switches].part1 = p;	  if ((SWITCH_TAKES_ARG (c) && p[1] == 0)	      || WORD_SWITCH_TAKES_ARG (p))	    switches[n_switches].part2 = argv[++i];	  else if (c == 'o') {	    /* On some systems, ld cannot handle -o without space.	       So split the -o and its argument.  */	    switches[n_switches].part2 = (char *) xmalloc (strlen (p));	    strcpy (switches[n_switches].part2, &p[1]);	    p[1] = 0;	  } else	    switches[n_switches].part2 = 0;	  switches[n_switches].valid = 0;	  n_switches++;	}      else	infiles[n_infiles++] = argv[i];    }  switches[n_switches].part1 = 0;  infiles[n_infiles] = 0;}/* Process a spec string, accumulating and running commands.  *//* These variables describe the input file name.   input_file_number is the index on outfiles of this file,   so that the output file name can be stored for later use by %o.   input_basename is the start of the part of the input file   sans all directory names, and basename_length is the number   of characters starting there excluding the suffix .c or whatever.  */char *input_filename;int input_file_number;int input_filename_length;int basename_length;char *input_basename;/* These are variables used within do_spec and do_spec_1.  *//* Nonzero if an arg has been started and not yet terminated   (with space, tab or newline).  */int arg_going;/* Nonzero means %d or %g has been seen; the next arg to be terminated   is a temporary file name.  */int delete_this_arg;/* Nonzero means %w has been seen; the next arg to be terminated   is the output file name of this compilation.  */int this_is_output_file;/* Nonzero means %s has been seen; the next arg to be terminated   is the name of a library file and we should try the standard   search dirs for it.  */int this_is_library_file;/* Process the spec SPEC and run the commands specified therein.   Returns 0 if the spec is successfully processed; -1 if failed.  */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美男人的天堂一二区| 亚洲免费在线观看视频| 欧美一级欧美三级| 欧美日韩电影一区| 欧美少妇xxx| 欧美日韩在线亚洲一区蜜芽| 欧美日韩国产精品成人| 欧美日韩国产首页在线观看| 欧美精品777| 欧美一级二级三级蜜桃| 欧美一区二区人人喊爽| 日韩欧美一区二区三区在线| 欧美一区二区三区视频在线| 精品粉嫩超白一线天av| 久久精品一区二区三区不卡| 欧美韩国日本不卡| 亚洲三级电影全部在线观看高清| 日韩理论片在线| 亚洲v日本v欧美v久久精品| 男女男精品视频网| 狠狠色2019综合网| 高清beeg欧美| 一本色道久久综合精品竹菊| 欧美日韩国产综合一区二区| 日韩三级.com| 国产精品天天看| 一区二区三区四区不卡视频 | 一区二区三区精密机械公司| 洋洋av久久久久久久一区| 午夜国产不卡在线观看视频| 久久精品99国产精品日本| 国产成人h网站| 欧美综合一区二区三区| 3d成人动漫网站| 国产视频一区在线观看| 一区二区三区产品免费精品久久75| 日日夜夜精品视频天天综合网| 精品在线你懂的| 91麻豆精东视频| 日韩欧美国产综合在线一区二区三区| 国产三区在线成人av| 一区二区三区免费在线观看| 久久国产尿小便嘘嘘| 99久久精品国产精品久久| 在线91免费看| 中文字幕一区二区不卡| 蜜桃久久久久久| 97久久久精品综合88久久| 欧美揉bbbbb揉bbbbb| 久久99精品久久久久婷婷| 成人av片在线观看| 538prom精品视频线放| 国产精品乱人伦中文| 天堂成人国产精品一区| 成人妖精视频yjsp地址| 欧美美女直播网站| 中文字幕一区二区三区四区不卡 | 欧美四级电影在线观看| 久久午夜色播影院免费高清 | 成人黄色国产精品网站大全在线免费观看 | 亚洲国产aⅴ天堂久久| 国产精品夜夜嗨| 欧美精品v国产精品v日韩精品 | 国产欧美日韩激情| 日韩专区一卡二卡| 91在线视频播放地址| 精品国产1区2区3区| 午夜私人影院久久久久| 99国产精品99久久久久久| 久久综合九色综合欧美就去吻| 亚洲一区视频在线观看视频| 丁香五精品蜜臀久久久久99网站 | 欧美精品一区二区三区蜜桃| 亚洲电影第三页| 91麻豆国产精品久久| 国产无遮挡一区二区三区毛片日本| 日韩va欧美va亚洲va久久| 一本色道久久综合亚洲91| 国产精品视频一二| 麻豆91免费观看| 777a∨成人精品桃花网| 亚洲综合免费观看高清完整版| 国产成人aaa| 国产午夜精品一区二区三区视频| 日本大胆欧美人术艺术动态| 欧美日韩一区三区| 亚洲精品成a人| 99精品国产一区二区三区不卡| 久久精品一区二区三区不卡| 久久国产精品免费| 欧美变态口味重另类| 全国精品久久少妇| 91精品国产日韩91久久久久久| 亚洲国产一区二区三区青草影视| 色婷婷综合久久久| 亚洲男人电影天堂| 色乱码一区二区三区88| 亚洲日本电影在线| 久久久三级国产网站| 极品美女销魂一区二区三区 | 久久久精品国产99久久精品芒果 | 色一区在线观看| 一区二区三区日韩精品视频| 91福利资源站| 亚洲一区在线看| 欧美日韩成人综合| 免费观看日韩av| 日韩无一区二区| 久草热8精品视频在线观看| 精品国免费一区二区三区| 国产精品一区在线观看乱码| 国产亚洲精品免费| bt7086福利一区国产| 亚洲精品久久嫩草网站秘色| 欧美色中文字幕| 爽好多水快深点欧美视频| 欧美电影免费提供在线观看| 国产一区日韩二区欧美三区| 中文字幕精品一区| 一本一本大道香蕉久在线精品| 亚洲国产日韩精品| 日韩亚洲欧美成人一区| 激情av综合网| 亚洲欧洲精品天堂一级| 欧洲日韩一区二区三区| 青青草原综合久久大伊人精品优势| 精品日韩在线观看| 国产1区2区3区精品美女| 亚洲欧美色一区| 欧美日韩国产一区| 国产精一区二区三区| 专区另类欧美日韩| 在线播放国产精品二区一二区四区| 麻豆精品久久精品色综合| 久久精品人人做人人综合| 色乱码一区二区三区88| 麻豆成人在线观看| 国产精品久久久久久久久搜平片 | 伊人色综合久久天天人手人婷| 欧美绝品在线观看成人午夜影视| 蜜桃av一区二区| 国产精品少妇自拍| 欧美日韩一区二区三区在线看| 精品在线一区二区| 亚洲精品免费在线| 精品国产乱码久久久久久图片| 91美女在线观看| 激情综合五月天| 亚洲免费在线视频| 精品国精品自拍自在线| 日本韩国一区二区三区| 极品少妇一区二区| 亚洲一区二区三区美女| 久久伊人中文字幕| 色婷婷久久久亚洲一区二区三区| 免费观看在线综合| 伊人开心综合网| 国产三级欧美三级| 欧美一区二区美女| 色综合视频一区二区三区高清| 欧美一区中文字幕| 成人免费视频视频在线观看免费| 石原莉奈在线亚洲二区| 成人欧美一区二区三区在线播放| 日韩精品专区在线| 91黄色免费网站| 成人av午夜电影| 国产综合色产在线精品| 日韩精品视频网站| 亚洲天堂精品在线观看| 久久午夜羞羞影院免费观看| 欧美日韩国产另类一区| 91日韩在线专区| 粉嫩一区二区三区在线看| 日本欧美一区二区在线观看| 中文字幕一区二区三| 久久久久97国产精华液好用吗| 欧美日韩午夜在线视频| 色综合婷婷久久| 丁香啪啪综合成人亚洲小说| 精品一区二区三区免费| 日韩精品91亚洲二区在线观看| 一区二区三区国产精华| 国产精品久久久久久妇女6080| 久久天堂av综合合色蜜桃网| 3d动漫精品啪啪1区2区免费| 欧美在线观看一区| 91久久久免费一区二区| 91在线观看视频| 99视频在线观看一区三区| 国产成人亚洲综合a∨婷婷图片| 六月丁香婷婷久久| 日韩av一区二区在线影视| 亚洲国产成人va在线观看天堂| 亚洲视频每日更新| 亚洲欧美区自拍先锋| 成人免费在线观看入口| 成人欧美一区二区三区1314| 自拍偷拍欧美激情| 亚洲欧美另类在线|