File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ CPPFLAGS += \
79
79
-DREGION_QUARANTINE_SKIP_THRESHOLD=$(CONFIG_REGION_QUARANTINE_SKIP_THRESHOLD ) \
80
80
-DFREE_SLABS_QUARANTINE_RANDOM_SIZE=$(CONFIG_FREE_SLABS_QUARANTINE_RANDOM_SIZE )
81
81
82
- hardened_malloc .so : $(OBJECTS )
82
+ libhardened_malloc .so : $(OBJECTS )
83
83
$(CC ) $(CFLAGS ) $(LDFLAGS ) -shared $^ $(LDLIBS ) -o $@
84
84
85
85
chacha.o : chacha.c chacha.h util.h
94
94
clang-tidy $(TIDY_CHECKS ) $(SOURCES ) -- $(CPPFLAGS )
95
95
96
96
clean :
97
- rm -f hardened_malloc .so $(OBJECTS )
97
+ rm -f libhardened_malloc .so $(OBJECTS )
98
98
99
99
.PHONY : clean tidy
Original file line number Diff line number Diff line change 2
2
3
3
dir=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
4
4
[[ $LD_PRELOAD ]] && LD_PRELOAD+=" "
5
- export LD_PRELOAD+=" $dir /hardened_malloc .so"
5
+ export LD_PRELOAD+=" $dir /libhardened_malloc .so"
6
6
exec " $@ "
You can’t perform that action at this time.
0 commit comments