Changeset 6e4b913 for src/driver
- Timestamp:
- Jul 10, 2016, 4:35:32 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, 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:
- 4e06c1e, c13d970
- Parents:
- 07bc165
- Location:
- src/driver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/driver/Makefile.in
r07bc165 r6e4b913 95 95 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 96 96 CFA_BINDIR = @CFA_BINDIR@ 97 CFA_FLAGS = @CFA_FLAGS@ 97 98 CFA_INCDIR = @CFA_INCDIR@ 98 99 CFA_LIBDIR = @CFA_LIBDIR@ -
src/driver/cfa.cc
r07bc165 r6e4b913 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Jul 5 20:56:18201613 // Update Count : 14 012 // Last Modified On : Thu Jul 7 08:56:01 2016 13 // Update Count : 144 14 14 // 15 15 … … 87 87 bool cpp_flag = false; // -E or -M flag, preprocessor only 88 88 bool std_flag = false; // -std= flag 89 bool debugging = false; // -g flag 90 (void) debugging; // remove unused variable warning 89 bool debugging __attribute(( unused )) = false; // -g flag 91 90 92 91 const char *args[argc + 100]; // cfa command line values, plus some space for additional flags … … 245 244 } // if 246 245 246 // add the CFA include-library paths, which allow direct access to header files without directory qualification 247 247 248 args[nargs] = "-I" CFA_INCDIR; 248 249 nargs += 1;
Note: See TracChangeset
for help on using the changeset viewer.