diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-22 16:46:11 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-22 16:46:11 +0100 |
| commit | 222423a642eb8fc984833f3d344a421fe3a34047 (patch) | |
| tree | c5f33aac7e2885ce4c2add0baed9d045b799903a | |
| parent | a08e8a30e5114090e516ddcc335f9fcf5314eba3 (diff) | |
| download | allocbench-222423a642eb8fc984833f3d344a421fe3a34047.tar.gz allocbench-222423a642eb8fc984833f3d344a421fe3a34047.zip | |
fix compilation of chattymalloc
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 15bc8ec..71b4967 100644 --- a/src/Makefile +++ b/src/Makefile @@ -31,7 +31,7 @@ $(OBJDIR)/allocators/speedymalloc.so: speedymalloc.c Makefile $(OBJDIR)/allocators/chattymalloc.so: chattymalloc.h chattymalloc.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi - $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $< -ldl + $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ chattymalloc.c -ldl $(OBJDIR)/print_status_on_exit.so: print_status_on_exit.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi |
