hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 3f005099f4227c96c4548a5a9fd30a1dae689bbb
parent fbb765d2a55758ac481b7c2722c56302e26f048d
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 22 Jan 2021 13:11:55 -0500

stdlib.mk: update rt

Diffstat:
Mstdlib.mk | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/stdlib.mk b/stdlib.mk @@ -4,7 +4,10 @@ librt_srcs=$(STDLIB)/rt/$(PLATFORM)/abort.ha \ $(STDLIB)/rt/$(PLATFORM)/errno.ha \ $(STDLIB)/rt/$(PLATFORM)/start.ha \ $(STDLIB)/rt/$(PLATFORM)/syscallno$(ARCH).ha \ - $(STDLIB)/rt/$(PLATFORM)/syscalls.ha + $(STDLIB)/rt/$(PLATFORM)/syscalls.ha \ + $(STDLIB)/rt/$(PLATFORM)/segmalloc.ha \ + $(STDLIB)/rt/memcpy.ha \ + $(STDLIB)/rt/malloc.ha $(HARECACHE)/rt/rt.ssa: $(librt_srcs) @printf 'HAREC \t$@\n'