Changeset 3921 for branches/libc-0.6
- Timestamp:
- Oct 25, 2014, 7:34:31 PM (11 years ago)
- Location:
- branches/libc-0.6/src/gcc/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/gcc/gcc/gcc.c
r1479 r3921 2877 2877 static int n_switches; 2878 2878 2879 /* Language is one of three things: 2880 2881 1) The name of a real programming language. 2882 2) NULL, indicating that no one has figured out 2883 what it is yet. 2884 3) '*', indicating that the file should be passed 2885 to the linker. */ 2879 2886 struct infile 2880 2887 { … … 6398 6405 } 6399 6406 6400 /* Reset the output file name to the first input file name, for use 6401 with %b in LINK_SPEC on a target that prefers not to emit a.out 6402 by default. */ 6407 /* Reset the input file name to the first compile/object file name, for use 6408 with %b in LINK_SPEC. We use the first input file that we can find 6409 a compiler to compile it instead of using infiles.language since for 6410 languages other than C we use aliases that we then lookup later. */ 6403 6411 if (n_infiles > 0) 6404 set_input (infiles[0].name); 6412 { 6413 int i; 6414 6415 for (i = 0; i < n_infiles ; i++) 6416 if (!infiles[i].language || infiles[i].language[0] != '*') 6417 { 6418 set_input (infiles[i].name); 6419 break; 6420 } 6421 } 6405 6422 6406 6423 if (error_count == 0) -
branches/libc-0.6/src/gcc/gcc/version.c
r1589 r3921 7 7 organization's name in parentheses at the end of the string. */ 8 8 9 const char version_string[] = "3.3.5 ";9 const char version_string[] = "3.3.5 (Bird Build 2012-03-22 22:01 (csd4))"; 10 10 11 11 /* This is the location of the online document giving instructions for
Note:
See TracChangeset
for help on using the changeset viewer.