Skip to content

Commit

Permalink
Initial.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Sep 26, 2023
1 parent c64a20a commit 055da47
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/GNUmakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
all: malloc-counter.dylib microbenchmark-pages-new

malloc-counter.dylib: GNUmakefile malloc-counter.cpp
clang++ --std=c++20 -compatibility_version 1 -current_version 1 -dynamiclib malloc-counter.cpp printf.cpp -o malloc-counter.dylib

microbenchmark-pages-new: GNUmakefile microbenchmark-pages-new.cpp
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 comments on commit 055da47

Please sign in to comment.