[TOOLCHAIN] Hosted toolchain with musl libc

This commit is contained in:
2016-11-29 09:19:44 +01:00
parent 4f76557b73
commit ba2ecd725f
8 changed files with 336 additions and 8 deletions

30
libc/Makefile Normal file
View File

@@ -0,0 +1,30 @@
ifeq ($(MITTOS64),)
$(error Build environment is not activated. Please source activate)
endif
LIBDIR := $(SYSROOT)/usr/lib
CRT := crt0
CRT_OBJ := $(addprefix obj/, $(patsubst %,%.o,$(CRT)))
ASFLAGS := -ggdb
all: $(CRT_OBJ)
OBJ_DIRS := $(sort $(dir $(CRT_OBJ)))
$(CRT_OBJ): | $(OBJ_DIRS)
$(OBJ_DIRS):
mkdir -p $@
obj/%.o:%.S
$(COMPILE.S) $^ -o $@
$(LIBDIR)/%: obj/%
cp $< $@
install: $(patsubst %,$(LIBDIR)/%.o,$(CRT))
clean:
rm -rf obj/
.PHONY: all clean install