Compare commits

...

3 commits

Author SHA1 Message Date
charles25565
7c9b69163b
Merge 7844b354a5 into 5cb0ff9f4d 2025-10-29 17:14:10 -04:00
Charles
5cb0ff9f4d gitignore: use exact matches 2025-10-29 16:26:38 -04:00
Charles
7844b354a5 Use $(AR) 2025-10-29 13:44:26 -04:00
2 changed files with 3 additions and 3 deletions

4
.gitignore vendored
View file

@ -1,2 +1,2 @@
out/
out-light/
/out/
/out-light/

View file

@ -111,7 +111,7 @@ CPPFLAGS += \
-DCONFIG_SELF_INIT=$(CONFIG_SELF_INIT)
$(OUT)/libhardened_malloc$(SUFFIX).a: $(OBJECTS) | $(OUT)
ar rcs $@ $^
$(AR) rcs $@ $^
$(OUT)/libhardened_malloc$(SUFFIX).so: $(OBJECTS) | $(OUT)
$(CC) $(CFLAGS) $(LDFLAGS) -shared $^ $(LDLIBS) -o $@