We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c64a20a commit 055da47Copy full SHA for 055da47
src/GNUmakefile
@@ -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