Skip to content

Commit 055da47

Browse files
committed
Initial.
1 parent c64a20a commit 055da47

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/GNUmakefile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
all: malloc-counter.dylib microbenchmark-pages-new
2+
3+
malloc-counter.dylib: GNUmakefile malloc-counter.cpp
4+
clang++ --std=c++20 -compatibility_version 1 -current_version 1 -dynamiclib malloc-counter.cpp printf.cpp -o malloc-counter.dylib
5+
6+
microbenchmark-pages-new: GNUmakefile microbenchmark-pages-new.cpp
7+
clang++ --std=c++20 -DNDEBUG -O3 -DOBJECT_SIZE=32 -DOBJECT_DISTANCE=4096 -std=c++20 microbenchmark-pages-new.cpp printf.cpp -o microbenchmark-pages-new

0 commit comments

Comments
 (0)