2020-06-15 14:18:57 +00:00
|
|
|
|
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
|
|
|
#── vi: set noet ft=make ts=8 sw=8 fenc=utf-8 :vi ────────────────────┘
|
|
|
|
|
#
|
|
|
|
|
# OVERVIEW
|
|
|
|
|
#
|
|
|
|
|
# αcτµαlly pδrταblε εxεcµταblε
|
|
|
|
|
#
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
#
|
|
|
|
|
# This file defines the libraries, runtimes, and build rules needed to
|
|
|
|
|
# create executables from your Linux workstation that'll run anywhere.
|
|
|
|
|
# Loading this package will make certain systemic modifications to the
|
|
|
|
|
# build like turning off the System V "Red Zone" optimization, because
|
|
|
|
|
# αcτµαlly pδrταblε εxεcµταblεs need to be able to run in kernelspace.
|
|
|
|
|
|
|
|
|
|
PKGS += APE
|
|
|
|
|
|
2023-05-02 20:38:16 +00:00
|
|
|
|
APE_FILES := $(wildcard ape/*.*)
|
|
|
|
|
APE_HDRS = $(filter %.h,$(APE_FILES))
|
|
|
|
|
APE_INCS = $(filter %.inc,$(APE_FILES))
|
|
|
|
|
|
2023-05-19 02:05:08 +00:00
|
|
|
|
ifeq ($(ARCH), aarch64)
|
|
|
|
|
|
|
|
|
|
APE = o/$(MODE)/ape/aarch64.lds
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2023-05-09 09:35:05 +00:00
|
|
|
|
APELINK = \
|
|
|
|
|
$(COMPILE) \
|
|
|
|
|
-ALINK.ape \
|
|
|
|
|
$(LINK) \
|
|
|
|
|
$(LINKARGS) \
|
2023-06-10 16:15:19 +00:00
|
|
|
|
$(OUTPUT_OPTION) && \
|
|
|
|
|
$(COMPILE) \
|
|
|
|
|
-AFIXUP.ape \
|
|
|
|
|
-wT$@ \
|
|
|
|
|
$(FIXUPOBJ) \
|
|
|
|
|
$@
|
2023-05-09 09:35:05 +00:00
|
|
|
|
|
2023-07-26 20:54:49 +00:00
|
|
|
|
APE_SRCS = ape/ape.S ape/start.S ape/launch.S ape/systemcall.S
|
2023-05-09 08:56:56 +00:00
|
|
|
|
APE_OBJS = o/$(MODE)/ape/ape.o
|
|
|
|
|
APE_NO_MODIFY_SELF = $(APE)
|
|
|
|
|
APE_COPY_SELF = $(APE)
|
|
|
|
|
|
|
|
|
|
.PHONY: o/$(MODE)/ape
|
|
|
|
|
o/$(MODE)/ape: $(APE)
|
|
|
|
|
|
2023-05-19 02:05:08 +00:00
|
|
|
|
o/$(MODE)/ape/aarch64.lds: \
|
|
|
|
|
ape/aarch64.lds \
|
2024-08-16 01:33:35 +00:00
|
|
|
|
libc/zip.h \
|
2023-06-03 15:12:13 +00:00
|
|
|
|
libc/thread/tls.h \
|
2023-05-19 02:05:08 +00:00
|
|
|
|
libc/calls/struct/timespec.h \
|
2024-08-16 01:33:35 +00:00
|
|
|
|
libc/macros.h \
|
2023-05-19 02:05:08 +00:00
|
|
|
|
libc/str/str.h
|
|
|
|
|
|
2023-07-26 20:54:49 +00:00
|
|
|
|
APE_LOADER_LDFLAGS = \
|
|
|
|
|
-pie \
|
|
|
|
|
-static \
|
|
|
|
|
-nostdlib \
|
|
|
|
|
--no-dynamic-linker \
|
|
|
|
|
-z norelro \
|
|
|
|
|
-z common-page-size=0x4000 \
|
|
|
|
|
-z max-page-size=0x4000
|
|
|
|
|
|
|
|
|
|
APE_LOADER_FLAGS = \
|
|
|
|
|
-DNDEBUG \
|
|
|
|
|
-iquote. \
|
|
|
|
|
-Wall \
|
|
|
|
|
-Wextra \
|
|
|
|
|
-fpie \
|
|
|
|
|
-Os \
|
|
|
|
|
-ffreestanding \
|
|
|
|
|
-mgeneral-regs-only \
|
|
|
|
|
-fno-asynchronous-unwind-tables \
|
|
|
|
|
-fno-stack-protector \
|
|
|
|
|
-fno-ident \
|
|
|
|
|
-fno-gnu-unique \
|
|
|
|
|
-c \
|
|
|
|
|
$(OUTPUT_OPTION) \
|
|
|
|
|
$<
|
|
|
|
|
|
|
|
|
|
o/$(MODE)/ape/ape.elf: o/$(MODE)/ape/ape.elf.dbg
|
2023-12-30 04:11:23 +00:00
|
|
|
|
@$(COMPILE) -AOBJCOPY -T$@ $(OBJCOPY) -g $< $@
|
|
|
|
|
@$(COMPILE) -AFIXUPOBJ -wT$@ $(FIXUPOBJ) $@
|
2023-07-26 20:54:49 +00:00
|
|
|
|
|
|
|
|
|
o/$(MODE)/ape/ape.elf.dbg: \
|
|
|
|
|
o/$(MODE)/ape/start.o \
|
|
|
|
|
o/$(MODE)/ape/loader.o \
|
|
|
|
|
o/$(MODE)/ape/launch.o \
|
|
|
|
|
o/$(MODE)/ape/systemcall.o
|
|
|
|
|
@$(COMPILE) -ALINK.elf $(LD) $(APE_LOADER_LDFLAGS) -o $@ $(patsubst %.lds,-T %.lds,$^)
|
|
|
|
|
|
2023-08-18 05:01:42 +00:00
|
|
|
|
o/$(MODE)/ape/loader.o: ape/loader.c ape/ape.h
|
2023-12-30 04:11:23 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=33 -g $(APE_LOADER_FLAGS)
|
2023-07-26 20:54:49 +00:00
|
|
|
|
o/$(MODE)/ape/start.o: ape/start.S
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $<
|
|
|
|
|
o/$(MODE)/ape/launch.o: ape/launch.S
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $<
|
|
|
|
|
o/$(MODE)/ape/systemcall.o: ape/systemcall.S
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $<
|
|
|
|
|
|
|
|
|
|
.PHONY: o/$(MODE)/ape
|
|
|
|
|
o/$(MODE)/ape: o/$(MODE)/ape/ape.elf
|
|
|
|
|
|
2023-05-09 08:56:56 +00:00
|
|
|
|
else
|
|
|
|
|
|
2023-05-19 02:05:08 +00:00
|
|
|
|
APE = o/$(MODE)/ape/ape.o \
|
|
|
|
|
o/$(MODE)/ape/ape.lds
|
|
|
|
|
|
|
|
|
|
APELINK = \
|
|
|
|
|
$(COMPILE) \
|
|
|
|
|
-ALINK.ape \
|
|
|
|
|
$(LINK) \
|
|
|
|
|
$(LINKARGS) \
|
2023-06-10 16:15:19 +00:00
|
|
|
|
$(OUTPUT_OPTION) && \
|
|
|
|
|
$(COMPILE) \
|
|
|
|
|
-AFIXUP.ape \
|
|
|
|
|
-wT$@ \
|
|
|
|
|
$(FIXUPOBJ) \
|
|
|
|
|
$@
|
2023-05-19 02:05:08 +00:00
|
|
|
|
|
2022-07-21 16:16:38 +00:00
|
|
|
|
APE_NO_MODIFY_SELF = \
|
|
|
|
|
o/$(MODE)/ape/ape.lds \
|
2021-10-02 15:17:04 +00:00
|
|
|
|
o/$(MODE)/ape/ape-no-modify-self.o
|
2021-08-12 07:42:14 +00:00
|
|
|
|
|
2022-07-21 16:16:38 +00:00
|
|
|
|
APE_COPY_SELF = \
|
|
|
|
|
o/$(MODE)/ape/ape.lds \
|
2022-05-22 11:51:02 +00:00
|
|
|
|
o/$(MODE)/ape/ape-copy-self.o
|
|
|
|
|
|
2022-07-21 16:16:38 +00:00
|
|
|
|
APE_LOADER_FLAGS = \
|
|
|
|
|
-DNDEBUG \
|
|
|
|
|
-iquote. \
|
|
|
|
|
-Wall \
|
|
|
|
|
-Wextra \
|
2023-08-18 05:01:42 +00:00
|
|
|
|
-Werror \
|
|
|
|
|
-pedantic-errors \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
-fpie \
|
|
|
|
|
-Os \
|
|
|
|
|
-ffreestanding \
|
|
|
|
|
-mgeneral-regs-only \
|
2023-07-10 11:29:46 +00:00
|
|
|
|
-fno-stack-protector \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
-fno-ident \
|
|
|
|
|
-fno-gnu-unique \
|
|
|
|
|
-c \
|
|
|
|
|
$(OUTPUT_OPTION) \
|
2022-05-22 11:51:02 +00:00
|
|
|
|
$<
|
|
|
|
|
|
2021-10-02 15:17:04 +00:00
|
|
|
|
APE_SRCS_C = ape/loader.c
|
|
|
|
|
APE_SRCS_S = $(filter %.S,$(APE_FILES))
|
|
|
|
|
APE_SRCS = $(APE_SRCS_C) $(APE_SRCS_S)
|
|
|
|
|
APE_OBJS = $(APE_SRCS_S:%.S=o/$(MODE)/%.o)
|
2020-06-16 02:01:28 +00:00
|
|
|
|
APE_CHECKS = $(APE_HDRS:%=o/%.ok)
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/ape/idata.inc: \
|
|
|
|
|
ape/idata.internal.h \
|
2020-06-16 02:01:28 +00:00
|
|
|
|
ape/relocations.h
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/$(MODE)/ape/ape-no-modify-self.o: \
|
|
|
|
|
ape/ape.S \
|
2023-08-18 05:01:42 +00:00
|
|
|
|
ape/ape.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
ape/macros.internal.h \
|
|
|
|
|
ape/relocations.h \
|
2023-05-09 09:35:05 +00:00
|
|
|
|
ape/ape.internal.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/dce.h \
|
|
|
|
|
libc/elf/def.h \
|
2023-07-08 13:58:21 +00:00
|
|
|
|
libc/thread/tls.h \
|
2024-08-16 01:33:35 +00:00
|
|
|
|
libc/macho.h \
|
|
|
|
|
libc/macros.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/nexgen32e/uart.internal.h \
|
2022-11-06 08:01:34 +00:00
|
|
|
|
libc/calls/metalfile.internal.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/nt/pedef.internal.h \
|
|
|
|
|
libc/runtime/e820.internal.h \
|
|
|
|
|
libc/runtime/mman.internal.h \
|
|
|
|
|
libc/runtime/pc.internal.h \
|
|
|
|
|
libc/sysv/consts/prot.h \
|
2022-05-22 11:51:02 +00:00
|
|
|
|
o/$(MODE)/ape/ape.elf
|
2022-07-21 16:16:38 +00:00
|
|
|
|
@$(COMPILE) \
|
|
|
|
|
-AOBJECTIFY.S \
|
|
|
|
|
$(OBJECTIFY.S) \
|
|
|
|
|
$(OUTPUT_OPTION) \
|
|
|
|
|
-DAPE_NO_MODIFY_SELF \
|
2022-05-25 18:31:08 +00:00
|
|
|
|
-DAPE_LOADER='"o/$(MODE)/ape/ape.elf"' $<
|
|
|
|
|
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/$(MODE)/ape/ape-copy-self.o: \
|
|
|
|
|
ape/ape.S \
|
2023-08-18 05:01:42 +00:00
|
|
|
|
ape/ape.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
ape/macros.internal.h \
|
|
|
|
|
ape/relocations.h \
|
2023-05-09 09:35:05 +00:00
|
|
|
|
ape/ape.internal.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/dce.h \
|
|
|
|
|
libc/elf/def.h \
|
2023-07-08 13:58:21 +00:00
|
|
|
|
libc/thread/tls.h \
|
2024-08-16 01:33:35 +00:00
|
|
|
|
libc/macho.h \
|
|
|
|
|
libc/macros.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/nexgen32e/uart.internal.h \
|
2022-11-06 08:01:34 +00:00
|
|
|
|
libc/calls/metalfile.internal.h \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/nt/pedef.internal.h \
|
|
|
|
|
libc/runtime/e820.internal.h \
|
|
|
|
|
libc/runtime/mman.internal.h \
|
|
|
|
|
libc/runtime/pc.internal.h \
|
2024-01-27 06:30:56 +00:00
|
|
|
|
libc/sysv/consts/prot.h
|
2022-07-21 16:16:38 +00:00
|
|
|
|
@$(COMPILE) \
|
|
|
|
|
-AOBJECTIFY.S \
|
|
|
|
|
$(OBJECTIFY.S) \
|
|
|
|
|
$(OUTPUT_OPTION) \
|
2022-05-22 11:51:02 +00:00
|
|
|
|
-DAPE_NO_MODIFY_SELF $<
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2023-07-01 12:10:12 +00:00
|
|
|
|
o/$(MODE)/ape/loader.o: ape/loader.c
|
2023-07-24 00:07:38 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=121 -g $(APE_LOADER_FLAGS)
|
2021-10-02 15:17:04 +00:00
|
|
|
|
o/$(MODE)/ape/loader-gcc.asm: ape/loader.c
|
2023-07-24 00:07:38 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=121 -S -g0 $(APE_LOADER_FLAGS)
|
2022-05-22 11:51:02 +00:00
|
|
|
|
o/$(MODE)/ape/loader-clang.asm: ape/loader.c
|
2023-07-24 00:07:38 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CLANG) -DSUPPORT_VECTOR=121 -S -g0 $(APE_LOADER_FLAGS)
|
2022-05-22 11:51:02 +00:00
|
|
|
|
|
2023-07-01 12:10:12 +00:00
|
|
|
|
o/$(MODE)/ape/loader-xnu.o: ape/loader.c
|
2023-07-24 00:07:38 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=8 -g $(APE_LOADER_FLAGS)
|
2022-05-22 11:51:02 +00:00
|
|
|
|
o/$(MODE)/ape/loader-xnu-gcc.asm: ape/loader.c
|
2023-07-24 00:07:38 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=8 -S -g0 $(APE_LOADER_FLAGS)
|
2022-05-22 11:51:02 +00:00
|
|
|
|
o/$(MODE)/ape/loader-xnu-clang.asm: ape/loader.c
|
2023-07-24 00:07:38 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CLANG) -DSUPPORT_VECTOR=8 -S -g0 $(APE_LOADER_FLAGS)
|
2021-04-08 04:01:57 +00:00
|
|
|
|
|
2022-05-22 11:51:02 +00:00
|
|
|
|
o/$(MODE)/ape/ape.elf: o/$(MODE)/ape/ape.elf.dbg
|
2024-07-20 18:21:26 +00:00
|
|
|
|
@$(COMPILE) -AOBJBINCOPY -w $(OBJBINCOPY) -f -o $@ $<
|
2023-07-24 00:07:38 +00:00
|
|
|
|
|
|
|
|
|
o/$(MODE)/ape/ape.macho: o/$(MODE)/ape/ape.elf.dbg
|
2024-07-20 18:21:26 +00:00
|
|
|
|
@$(COMPILE) -AOBJBINCOPY -w $(OBJBINCOPY) -fm -o $@ $<
|
2022-05-22 11:51:02 +00:00
|
|
|
|
|
2023-07-11 11:29:33 +00:00
|
|
|
|
APE_LOADER_LDFLAGS = \
|
|
|
|
|
-static \
|
|
|
|
|
-nostdlib \
|
|
|
|
|
--no-dynamic-linker \
|
2023-07-24 00:07:38 +00:00
|
|
|
|
-z separate-code \
|
|
|
|
|
-z common-page-size=0x1000 \
|
|
|
|
|
-z max-page-size=0x10000
|
2023-07-11 11:29:33 +00:00
|
|
|
|
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/$(MODE)/ape/ape.elf.dbg: \
|
|
|
|
|
o/$(MODE)/ape/loader-macho.o \
|
2023-07-24 00:07:38 +00:00
|
|
|
|
o/$(MODE)/ape/start.o \
|
|
|
|
|
o/$(MODE)/ape/loader.o \
|
|
|
|
|
o/$(MODE)/ape/launch.o \
|
|
|
|
|
o/$(MODE)/ape/systemcall.o \
|
2023-07-01 12:10:12 +00:00
|
|
|
|
ape/loader.lds
|
2023-07-24 07:49:06 +00:00
|
|
|
|
@$(COMPILE) -ALINK.elf $(LD) $(APE_LOADER_LDFLAGS) -o $@ $(patsubst %.lds,-T %.lds,$^)
|
2022-05-21 14:52:58 +00:00
|
|
|
|
|
2020-06-15 14:18:57 +00:00
|
|
|
|
.PHONY: o/$(MODE)/ape
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/$(MODE)/ape: $(APE_CHECKS) \
|
|
|
|
|
o/$(MODE)/ape/ape.o \
|
|
|
|
|
o/$(MODE)/ape/ape.lds \
|
|
|
|
|
o/$(MODE)/ape/ape.elf \
|
|
|
|
|
o/$(MODE)/ape/ape.macho \
|
2023-05-01 21:36:25 +00:00
|
|
|
|
|
|
|
|
|
endif
|
2023-05-09 08:56:56 +00:00
|
|
|
|
|
|
|
|
|
# these assembly files are safe to build on aarch64
|
2024-05-21 00:23:10 +00:00
|
|
|
|
o/$(MODE)/ape/ape.o: \
|
|
|
|
|
ape/ape.S \
|
|
|
|
|
ape/ape.h \
|
|
|
|
|
libc/dce.h \
|
|
|
|
|
libc/elf/def.h \
|
|
|
|
|
ape/relocations.h \
|
|
|
|
|
libc/thread/tls.h \
|
|
|
|
|
ape/ape.internal.h \
|
|
|
|
|
ape/macros.internal.h \
|
2024-08-16 01:33:35 +00:00
|
|
|
|
libc/macho.h \
|
|
|
|
|
libc/macros.h \
|
2024-05-21 00:23:10 +00:00
|
|
|
|
libc/sysv/consts/prot.h \
|
|
|
|
|
libc/nt/pedef.internal.h \
|
|
|
|
|
libc/runtime/pc.internal.h \
|
|
|
|
|
libc/runtime/e820.internal.h \
|
|
|
|
|
libc/runtime/mman.internal.h \
|
|
|
|
|
libc/nexgen32e/uart.internal.h \
|
|
|
|
|
libc/calls/metalfile.internal.h
|
2023-05-09 08:56:56 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $<
|
|
|
|
|
|
|
|
|
|
o/$(MODE)/ape/ape.lds: \
|
|
|
|
|
ape/ape.lds \
|
|
|
|
|
ape/macros.internal.h \
|
|
|
|
|
ape/relocations.h \
|
2023-05-09 09:35:05 +00:00
|
|
|
|
ape/ape.internal.h \
|
2023-05-09 08:56:56 +00:00
|
|
|
|
libc/thread/tls.h \
|
|
|
|
|
libc/calls/struct/timespec.h \
|
|
|
|
|
libc/thread/thread.h \
|
|
|
|
|
libc/dce.h \
|
|
|
|
|
libc/elf/def.h \
|
|
|
|
|
libc/elf/pf2prot.internal.h \
|
2024-08-16 01:33:35 +00:00
|
|
|
|
libc/macros.h \
|
2023-05-09 08:56:56 +00:00
|
|
|
|
libc/nt/pedef.internal.h \
|
|
|
|
|
libc/str/str.h \
|
2024-08-16 01:33:35 +00:00
|
|
|
|
libc/zip.h
|