Changes in / [fcd17b2f:a04ce4d]
- Location:
- src
- Files:
-
- 4 edited
-
SynTree/TypeExpr.cc (modified) (1 diff)
-
driver/cfa.cc (modified) (4 diffs)
-
libcfa/Makefile.am (modified) (1 diff)
-
libcfa/Makefile.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/TypeExpr.cc
rfcd17b2f ra04ce4d 21 21 } 22 22 23 TypeExpr::TypeExpr( const TypeExpr &other ) : Expression( other ),type( maybeClone( other.type ) ) {23 TypeExpr::TypeExpr( const TypeExpr &other ) : type( maybeClone( other.type ) ) { 24 24 } 25 25 -
src/driver/cfa.cc
rfcd17b2f ra04ce4d 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jan 20 14:38:45 201713 // Update Count : 15 512 // Last Modified On : Thu Jul 20 15:54:45 2017 13 // Update Count : 156 14 14 // 15 15 … … 76 76 bool cpp_flag = false; // -E or -M flag, preprocessor only 77 77 bool std_flag = false; // -std= flag 78 bool noincstd_flag = false; // -no-include-stdhdr= flag79 78 bool debugging __attribute(( unused )) = false; // -g flag 80 79 … … 134 133 } else if ( arg == "-nohelp" ) { 135 134 help = false; // strip the nohelp flag 136 } else if ( arg == "-no-include-stdhdr" ) {137 noincstd_flag = true; // strip the no-include-stdhdr flag138 135 } else if ( arg == "-compiler" ) { 139 136 // use the user specified compiler … … 234 231 args[nargs] = "-I" CFA_INCDIR; 235 232 nargs += 1; 236 if ( ! noincstd_flag ) { // do not use during build 237 args[nargs] = "-I" CFA_INCDIR "/stdhdr"; 238 nargs += 1; 239 } // if 233 args[nargs] = "-I" CFA_INCDIR "/stdhdr"; 234 nargs += 1; 240 235 args[nargs] = "-I" CFA_INCDIR "/concurrency"; 241 236 nargs += 1; -
src/libcfa/Makefile.am
rfcd17b2f ra04ce4d 39 39 40 40 AM_CCASFLAGS = @CFA_FLAGS@ 41 42 #CFLAGS for most libcfa src 43 #use -no-include-stdhdr to prevent rebuild cycles 44 #The built sources must not depend on the installed headers 45 CFLAGS = -quiet -no-include-stdhdr -I${abs_top_srcdir}/src/libcfa/stdhdr -XCFA -t -B${abs_top_srcdir}/src/driver ${EXTRA_FLAGS} 41 CFLAGS = -quiet -I${abs_top_srcdir}/src/libcfa/stdhdr -XCFA -t -B${abs_top_srcdir}/src/driver ${EXTRA_FLAGS} 46 42 CC = ${abs_top_srcdir}/src/driver/cfa 47 43 -
src/libcfa/Makefile.in
rfcd17b2f ra04ce4d 308 308 CFA_NAME = @CFA_NAME@ 309 309 CFA_PREFIX = @CFA_PREFIX@ 310 311 #CFLAGS for most libcfa src 312 #use -no-include-stdhdr to prevent rebuild cycles 313 #The built sources must not depend on the installed headers 314 CFLAGS = -quiet -no-include-stdhdr -I${abs_top_srcdir}/src/libcfa/stdhdr -XCFA -t -B${abs_top_srcdir}/src/driver ${EXTRA_FLAGS} 310 CFLAGS = -quiet -I${abs_top_srcdir}/src/libcfa/stdhdr -XCFA -t -B${abs_top_srcdir}/src/driver ${EXTRA_FLAGS} 315 311 CPP = @CPP@ 316 312 CPPFLAGS = @CPPFLAGS@
Note:
See TracChangeset
for help on using the changeset viewer.