Changeset 50b7e8c for doc/generic_types/evaluation/Makefile
- Timestamp:
- Apr 12, 2017, 10:15:20 PM (8 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:
- 19518e8
- Parents:
- 549950c (diff), 0d10090 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified doc/generic_types/evaluation/Makefile ¶
r549950c r50b7e8c 1 1 CFA = my-cfa 2 2 DEPFLAGS = -MMD -MP 3 CFLAGS = -O2 -flto 3 CFLAGS = -O2 4 ifdef N 5 CFLAGS += -DN=$(N) 6 endif 4 7 CXXFLAGS = $(CFLAGS) --std=c++14 5 8 … … 25 28 $(COMPILE.cfa) $(OUTPUT_OPTION) -c $< 26 29 27 COBJS = c-stack.o c-pair.o 30 COBJS = c-stack.o c-pair.o c-print.o 28 31 CPPOBJS = 29 32 CPPVOBJS = cpp-vstack.o 30 CFAOBJS = cfa-stack.o cfa-pair.o 33 CFAOBJS = cfa-stack.o cfa-pair.o cfa-print.o 31 34 32 35 c-bench: c-bench.c c-bench.d $(COBJS) … … 65 68 @echo '## Cforall ##' 66 69 @/usr/bin/time -f 'max_memory:\t %M kilobytes' ./cfa-bench 67 @printf 'source_size:\t%8d lines\n' `cat cfa-bench.c bench.h cfa-stack.h cfa-stack.c | wc -l`70 @printf 'source_size:\t%8d lines\n' `cat cfa-bench.c bench.h cfa-stack.h cfa-stack.c cfa-print.h cfa-print.c | wc -l` 68 71 @printf 'binary_size:\t%8d bytes\n' `stat -c %s cfa-bench` 69 72 … … 72 75 @echo '## C++ ##' 73 76 @/usr/bin/time -f 'max_memory:\t %M kilobytes' ./cpp-bench 74 @printf 'source_size:\t%8d lines\n' `cat cpp-bench.cpp bench.hpp cpp-stack.hpp | wc -l`77 @printf 'source_size:\t%8d lines\n' `cat cpp-bench.cpp bench.hpp cpp-stack.hpp cpp-print.hpp | wc -l` 75 78 @printf 'binary_size:\t%8d bytes\n' `stat -c %s cpp-bench` 76 79
Note: See TracChangeset
for help on using the changeset viewer.