Changeset eb0951d0
- Timestamp:
- May 31, 2017, 1:46:19 PM (7 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, with_gc
- Children:
- 13932f14
- Parents:
- 759908f
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r759908f reb0951d0 2496 2496 2497 2497 2498 if test "x${CXXFLAGS}" = "x"; then2499 export CXXFLAGS="-std=c++11 -g ${CXXFLAGS}" # defaults, no -O2 for debugging and failures2500 else2501 export CXXFLAGS="-std=c++11 ${CXXFLAGS}" # flags from configure command2502 fi2503 2504 2498 am__api_version='1.11' 2505 2499 -
configure.ac
r759908f reb0951d0 8 8 AC_CONFIG_HEADERS([config.h]) 9 9 AM_SILENT_RULES([no]) 10 11 if test "x${CXXFLAGS}" = "x"; then12 export CXXFLAGS="-std=c++11 -g ${CXXFLAGS}" # defaults, no -O2 for debugging and failures13 else14 export CXXFLAGS="-std=c++11 ${CXXFLAGS}" # flags from configure command15 fi16 10 17 11 AM_INIT_AUTOMAKE -
src/Makefile.am
r759908f reb0951d0 43 43 driver_cfa_cpp_SOURCES = ${SRC} 44 44 driver_cfa_cpp_LDADD = ${LEXLIB} -ldl # yywrap 45 driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall - DDEBUG_ALL -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O245 driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -Werror -DDEBUG_ALL -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O2 -g -std=c++14 46 46 driver_cfa_cpp_LDFLAGS = -Xlinker -export-dynamic 47 47 -
src/Makefile.in
r759908f reb0951d0 447 447 driver_cfa_cpp_SOURCES = ${SRC} 448 448 driver_cfa_cpp_LDADD = ${LEXLIB} -ldl # yywrap 449 driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall - DDEBUG_ALL -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O2449 driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -Werror -DDEBUG_ALL -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O2 -g -std=c++14 450 450 driver_cfa_cpp_LDFLAGS = -Xlinker -export-dynamic 451 451 all: $(BUILT_SOURCES) -
src/driver/Makefile.am
r759908f reb0951d0 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
r759908f reb0951d0 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
Note: See TracChangeset
for help on using the changeset viewer.