mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-07-23 15:20:49 -04:00
split out low-level memory mapping wrappers
This commit is contained in:
parent
8b42e8c3d6
commit
58d929c0f0
4 changed files with 47 additions and 29 deletions
5
Makefile
5
Makefile
|
@ -2,12 +2,13 @@ CPPFLAGS := -D_GNU_SOURCE
|
|||
CFLAGS := -std=c11 -Wall -Wextra -O2 -flto -fPIC -fvisibility=hidden -pedantic
|
||||
LDFLAGS := -Wl,--as-needed,-z,defs,-z,relro,-z,now
|
||||
LDLIBS := -lpthread
|
||||
OBJECTS := chacha.o malloc.o random.o util.o
|
||||
OBJECTS := chacha.o malloc.o memory.o random.o util.o
|
||||
|
||||
hardened_malloc.so: $(OBJECTS)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -shared $^ $(LDLIBS) -o $@
|
||||
|
||||
malloc.o: malloc.c malloc.h random.h util.h
|
||||
malloc.o: malloc.c malloc.h memory.h random.h util.h
|
||||
memory.o: memory.c memory.h util.h
|
||||
random.o: random.c random.h chacha.h util.h
|
||||
util.o: util.c util.h
|
||||
chacha.o: chacha.c chacha.h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue