Changeset b1e63ac5 for src/driver


Ignore:
Timestamp:
Jul 4, 2017, 9:40:16 AM (9 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, stuck-waitfor-destruct, with_gc
Children:
208e5be
Parents:
9c951e3 (diff), f7cb0bc (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' into references

Location:
src/driver
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/driver/Makefile.am

    r9c951e3 rb1e63ac5  
    1616
    1717# applies to both programs
    18 AM_CXXFLAGS = -Wall -O2
     18AM_CXXFLAGS = -Wall -O2 -g -std=c++14
    1919if BUILD_NO_LIB
    2020else
  • src/driver/Makefile.in

    r9c951e3 rb1e63ac5  
    208208
    209209# applies to both programs
    210 AM_CXXFLAGS = -Wall -O2 $(am__append_1) $(am__append_2) \
     210AM_CXXFLAGS = -Wall -O2 -g -std=c++14 $(am__append_1) $(am__append_2) \
    211211        $(am__append_3)
    212212cfa_SOURCES = cfa.cc
  • src/driver/cc1.cc

    r9c951e3 rb1e63ac5  
    8484
    8585
    86 void sigTermHandler( int signal ) {
     86void sigTermHandler( __attribute__((unused)) int signal ) {
    8787        if ( tmpfilefd != -1 ) {                                                        // RACE, file created ?
    8888                rmtmpfile();                                                                    // remove
     
    469469
    470470
    471 int main( const int argc, const char * const argv[], const char * const env[] ) {
     471int main( const int argc, const char * const argv[], __attribute__((unused)) const char * const env[] ) {
    472472#ifdef __DEBUG_H__
    473473        for ( int i = 0; env[i] != NULL; i += 1 ) {
  • src/driver/cfa.cc

    r9c951e3 rb1e63ac5  
    271271                args[nargs] = "-ldl";
    272272                nargs += 1;
     273                args[nargs] = "-lrt";
     274                nargs += 1;
    273275                args[nargs] = "-Xlinker";
    274276                nargs += 1;
Note: See TracChangeset for help on using the changeset viewer.