Changeset 850aff1
- Timestamp:
- Feb 9, 2022, 3:51:38 PM (20 months ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- a986807
- Parents:
- a554e5f4
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
driver/Makefile.am
ra554e5f4 r850aff1 19 19 20 20 # applies to both programs 21 AM_CXXFLAGS = @HOST_FLAGS@ -Wall - O2 -g -std=c++14 -I${abs_top_srcdir}/src -I${abs_top_srcdir}/src/include21 AM_CXXFLAGS = @HOST_FLAGS@ -Wall -Wextra -Werror=return-type -O2 -g -std=c++14 -I${abs_top_srcdir}/src -I${abs_top_srcdir}/src/include 22 22 23 23 # don't install cfa directly -
libcfa/prelude/Makefile.am
ra554e5f4 r850aff1 26 26 27 27 CC = @LOCAL_CFACC@ 28 AM_CFLAGS = -g -Wall -W no-unused-function -fPIC @ARCH_FLAGS@ @CONFIG_CFLAGS@28 AM_CFLAGS = -g -Wall -Werror=return-type -Wno-unused-function -fPIC @ARCH_FLAGS@ @CONFIG_CFLAGS@ 29 29 AM_CFAFLAGS = @CONFIG_CFAFLAGS@ 30 30 -
libcfa/src/Makefile.am
ra554e5f4 r850aff1 33 33 # The built sources must not depend on the installed inst_headers_src 34 34 AM_CFAFLAGS = -quiet -cfalib -I$(srcdir)/stdhdr -I$(srcdir)/concurrency $(if $(findstring ${gdbwaittarget}, ${@}), -XCFA --gdb) @CONFIG_CFAFLAGS@ 35 AM_CFLAGS = -g -Wall -W no-unused-function -fPIC -fexceptions -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@36 AM_CCASFLAGS = -g -Wall -W no-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@35 AM_CFLAGS = -g -Wall -Werror=return-type -Wno-unused-function -fPIC -fexceptions -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@ 36 AM_CCASFLAGS = -g -Wall -Werror=return-type -Wno-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@ 37 37 CFACC = @CFACC@ 38 38 -
longrun_tests/Makefile.am
ra554e5f4 r850aff1 36 36 -g \ 37 37 -Wall \ 38 -Wextra \ 39 -Werror=return-type 38 40 -Wno-unused-function \ 39 41 -quiet \ -
src/Makefile.am
ra554e5f4 r850aff1 59 59 60 60 $(srcdir)/AST/Type.hpp : BasicTypes-gen.cc 61 ${AM_V_GEN}${CXXCOMPILE} $< -o BasicTypes-gen -Wall -Wextra 61 ${AM_V_GEN}${CXXCOMPILE} $< -o BasicTypes-gen -Wall -Wextra -Werror=return-type 62 62 @./BasicTypes-gen 63 63 @rm BasicTypes-gen … … 71 71 EXTRA_DIST = include/cassert include/optional BasicTypes-gen.cc 72 72 73 AM_CXXFLAGS = @HOST_FLAGS@ -Wno-deprecated -Wall -Wextra - DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O3 -g -std=c++14 $(TCMALLOCFLAG)73 AM_CXXFLAGS = @HOST_FLAGS@ -Wno-deprecated -Wall -Wextra -Werror=return-type -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O3 -g -std=c++14 $(TCMALLOCFLAG) 74 74 AM_LDFLAGS = @HOST_FLAGS@ -Xlinker -export-dynamic 75 75 ARFLAGS = cr -
tests/Makefile.am
ra554e5f4 r850aff1 43 43 -g \ 44 44 -Wall \ 45 -Werror=return-type \ 45 46 -Wno-unused-function \ 46 47 -Wno-psabi \ -
tools/Makefile.am
ra554e5f4 r850aff1 19 19 20 20 noinst_PROGRAMS = busy catchsig repeat watchdog 21 AM_CFLAGS = -Wall -Wextra - O2 -g21 AM_CFLAGS = -Wall -Wextra -Werror=return-type -O2 -g 22 22 busy_LDFLAGS = -pthread 23 23 -
tools/prettyprinter/Makefile.am
ra554e5f4 r850aff1 32 32 nodist_pretty_SOURCES = ${SRC} 33 33 pretty_LDADD = ${LEXLIB} -ldl # yywrap 34 pretty_CXXFLAGS = -Wno-deprecated -Wall - DYY_NO_INPUT -O2 -g -std=c++1434 pretty_CXXFLAGS = -Wno-deprecated -Wall -Wextra -Werror=return-type -DYY_NO_INPUT -O2 -g -std=c++14 35 35 36 36 MOSTLYCLEANFILES = parser.output
Note: See TracChangeset
for help on using the changeset viewer.