Changeset a3e7d34 for src/driver
- Timestamp:
- Jun 3, 2016, 10:55:29 AM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 992c26d
- Parents:
- 848fb00 (diff), e24f13a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src/driver
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/driver/Makefile.in
r848fb00 ra3e7d34 80 80 CC = @CC@ 81 81 CCDEPMODE = @CCDEPMODE@ 82 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 82 83 CFA_BINDIR = @CFA_BINDIR@ 83 84 CFA_INCDIR = @CFA_INCDIR@ … … 98 99 EGREP = @EGREP@ 99 100 EXEEXT = @EXEEXT@ 100 GCC_PATH = @GCC_PATH@101 101 GREP = @GREP@ 102 102 INSTALL = @INSTALL@ -
src/driver/cc1.cc
r848fb00 ra3e7d34 10 10 // Created On : Fri Aug 26 14:23:51 2005 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu May 5 16:04:30201613 // Update Count : 7 712 // Last Modified On : Thu Jun 2 17:24:26 2016 13 // Update Count : 79 14 14 // 15 15 … … 30 30 31 31 32 string compiler_name( GCC_PATH );// path/name of C compiler32 string compiler_name( CFA_BACKEND_CC ); // path/name of C compiler 33 33 34 34 string D__GCC_BPREFIX__( "-D__GCC_BPREFIX__=" ); -
src/driver/cfa.cc
r848fb00 ra3e7d34 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Apr 20 18:31:28201613 // Update Count : 13 312 // Last Modified On : Thu Jun 2 17:24:25 2016 13 // Update Count : 137 14 14 // 15 15 … … 75 75 string langstd; // language standard 76 76 77 string compiler_path( GCC_PATH );// path/name of C compiler77 string compiler_path( CFA_BACKEND_CC ); // path/name of C compiler 78 78 string compiler_name; // name of C compiler 79 79 … … 317 317 nargs += 1; 318 318 } else { 319 cerr << argv[0] << " error, compiler " << compiler_name << " notsupported." << endl;319 cerr << argv[0] << " error, compiler \"" << compiler_name << "\" unsupported." << endl; 320 320 exit( EXIT_FAILURE ); 321 321 } // if
Note:
See TracChangeset
for help on using the changeset viewer.