diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-11 19:23:23 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-11 19:23:23 +0100 |
| commit | 27e9fb35b07e73bf2d682cbd85f3c45eb86f69ce (patch) | |
| tree | 98970c46189fa037593c54082c01e96c26742458 /src/Makefile | |
| parent | 1e8d1f2b3efbd879bac32414f82f983181231fbe (diff) | |
| download | allocbench-27e9fb35b07e73bf2d682cbd85f3c45eb86f69ce.tar.gz allocbench-27e9fb35b07e73bf2d682cbd85f3c45eb86f69ce.zip | |
fix inlining of bump_up and revert bumpptr_alloc to original version
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 9b22b28..40329bd 100644 --- a/src/Makefile +++ b/src/Makefile @@ -29,9 +29,9 @@ $(OBJDIR)/allocators/bumpptr_alloc_always_align.so: bumpptr_alloc_always_align.c @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< -$(OBJDIR)/allocators/bumpptr_alloc_single_tsd.so: bumpptr_alloc_single_tsd.c Makefile +$(OBJDIR)/allocators/bumpptr_alloc_single_tsd.so: bump_alloc.h bumpptr_alloc_single_tsd.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi - $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< + $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ bumpptr_alloc_single_tsd.c $(OBJDIR)/allocators/speedymalloc.so: speedymalloc.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi |
