Changeset a3e7d34 for src/driver


Ignore:
Timestamp:
Jun 3, 2016, 10:55:29 AM (9 years ago)
Author:
Thierry Delisle <tdelisle@…>
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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
src/driver
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/driver/Makefile.in

    r848fb00 ra3e7d34  
    8080CC = @CC@
    8181CCDEPMODE = @CCDEPMODE@
     82CFA_BACKEND_CC = @CFA_BACKEND_CC@
    8283CFA_BINDIR = @CFA_BINDIR@
    8384CFA_INCDIR = @CFA_INCDIR@
     
    9899EGREP = @EGREP@
    99100EXEEXT = @EXEEXT@
    100 GCC_PATH = @GCC_PATH@
    101101GREP = @GREP@
    102102INSTALL = @INSTALL@
  • src/driver/cc1.cc

    r848fb00 ra3e7d34  
    1010// Created On       : Fri Aug 26 14:23:51 2005
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu May  5 16:04:30 2016
    13 // Update Count     : 77
     12// Last Modified On : Thu Jun  2 17:24:26 2016
     13// Update Count     : 79
    1414//
    1515
     
    3030
    3131
    32 string compiler_name( GCC_PATH );                                               // path/name of C compiler
     32string compiler_name( CFA_BACKEND_CC );                                 // path/name of C compiler
    3333
    3434string D__GCC_BPREFIX__( "-D__GCC_BPREFIX__=" );
  • src/driver/cfa.cc

    r848fb00 ra3e7d34  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Apr 20 18:31:28 2016
    13 // Update Count     : 133
     12// Last Modified On : Thu Jun  2 17:24:25 2016
     13// Update Count     : 137
    1414//
    1515
     
    7575        string langstd;                                                                         // language standard
    7676
    77         string compiler_path( GCC_PATH );                                       // path/name of C compiler
     77        string compiler_path( CFA_BACKEND_CC );                         // path/name of C compiler
    7878        string compiler_name;                                                           // name of C compiler
    7979
     
    317317                nargs += 1;
    318318        } else {
    319                 cerr << argv[0] << " error, compiler " << compiler_name << " not supported." << endl;
     319                cerr << argv[0] << " error, compiler \"" << compiler_name << "\" unsupported." << endl;
    320320                exit( EXIT_FAILURE );
    321321        } // if
Note: See TracChangeset for help on using the changeset viewer.