Changeset b1e63ac5 for src/driver
- Timestamp:
- Jul 4, 2017, 9:40:16 AM (9 years ago)
- 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. - Location:
- src/driver
- Files:
-
- 4 edited
-
Makefile.am (modified) (1 diff)
-
Makefile.in (modified) (1 diff)
-
cc1.cc (modified) (2 diffs)
-
cfa.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/driver/Makefile.am
r9c951e3 rb1e63ac5 16 16 17 17 # applies to both programs 18 AM_CXXFLAGS = -Wall -O2 18 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 19 19 if BUILD_NO_LIB 20 20 else -
src/driver/Makefile.in
r9c951e3 rb1e63ac5 208 208 209 209 # applies to both programs 210 AM_CXXFLAGS = -Wall -O2 $(am__append_1) $(am__append_2) \210 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 $(am__append_1) $(am__append_2) \ 211 211 $(am__append_3) 212 212 cfa_SOURCES = cfa.cc -
src/driver/cc1.cc
r9c951e3 rb1e63ac5 84 84 85 85 86 void sigTermHandler( int signal ) {86 void sigTermHandler( __attribute__((unused)) int signal ) { 87 87 if ( tmpfilefd != -1 ) { // RACE, file created ? 88 88 rmtmpfile(); // remove … … 469 469 470 470 471 int main( const int argc, const char * const argv[], const char * const env[] ) {471 int main( const int argc, const char * const argv[], __attribute__((unused)) const char * const env[] ) { 472 472 #ifdef __DEBUG_H__ 473 473 for ( int i = 0; env[i] != NULL; i += 1 ) { -
src/driver/cfa.cc
r9c951e3 rb1e63ac5 271 271 args[nargs] = "-ldl"; 272 272 nargs += 1; 273 args[nargs] = "-lrt"; 274 nargs += 1; 273 275 args[nargs] = "-Xlinker"; 274 276 nargs += 1;
Note:
See TracChangeset
for help on using the changeset viewer.