2020-06-15 14:18:57 +00:00
|
|
|
|
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
|
|
|
#───vi: set et ft=make ts=8 tw=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-05-09 08:56:56 +00:00
|
|
|
|
APE_SRCS = ape/ape.S
|
|
|
|
|
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 \
|
2023-06-10 16:15:19 +00:00
|
|
|
|
libc/zip.internal.h \
|
2023-05-19 02:05:08 +00:00
|
|
|
|
libc/intrin/bits.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 \
|
|
|
|
|
libc/macros.internal.h \
|
|
|
|
|
libc/str/str.h
|
|
|
|
|
|
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 \
|
|
|
|
|
-fpie \
|
|
|
|
|
-Os \
|
|
|
|
|
-ffreestanding \
|
|
|
|
|
-mgeneral-regs-only \
|
|
|
|
|
-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
|
|
|
|
|
2023-06-06 06:35:31 +00:00
|
|
|
|
o/$(MODE)/ape/public/ape.lds: CPPFLAGS += -UCOSMO
|
2022-09-08 09:48:17 +00:00
|
|
|
|
o/$(MODE)/ape/public/ape.lds: \
|
|
|
|
|
ape/public/ape.lds \
|
|
|
|
|
ape/ape.lds \
|
2023-05-09 09:35:05 +00:00
|
|
|
|
ape/ape.internal.h \
|
2022-09-08 09:48:17 +00:00
|
|
|
|
ape/macros.internal.h \
|
|
|
|
|
ape/relocations.h \
|
|
|
|
|
libc/intrin/bits.h \
|
2022-09-10 18:49:13 +00:00
|
|
|
|
libc/thread/tls.h \
|
2022-09-08 09:48:17 +00:00
|
|
|
|
libc/calls/struct/timespec.h \
|
2022-09-13 21:57:38 +00:00
|
|
|
|
libc/thread/thread.h \
|
2022-09-08 09:48:17 +00:00
|
|
|
|
libc/dce.h \
|
|
|
|
|
libc/elf/def.h \
|
|
|
|
|
libc/elf/pf2prot.internal.h \
|
|
|
|
|
libc/macros.internal.h \
|
|
|
|
|
libc/nt/pedef.internal.h \
|
|
|
|
|
libc/str/str.h \
|
2023-06-10 16:15:19 +00:00
|
|
|
|
libc/zip.internal.h
|
2022-09-08 09:48:17 +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 \
|
|
|
|
|
ape/macros.internal.h \
|
|
|
|
|
ape/notice.inc \
|
|
|
|
|
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 \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/intrin/asancodes.h \
|
|
|
|
|
libc/macho.internal.h \
|
|
|
|
|
libc/macros.internal.h \
|
|
|
|
|
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/nexgen32e/vidya.internal.h \
|
|
|
|
|
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 \
|
2023-06-17 14:55:35 +00:00
|
|
|
|
ape/blink-linux-aarch64.gz \
|
|
|
|
|
ape/blink-xnu-aarch64.gz \
|
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 \
|
|
|
|
|
ape/macros.internal.h \
|
|
|
|
|
ape/notice.inc \
|
|
|
|
|
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 \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
libc/intrin/asancodes.h \
|
|
|
|
|
libc/macho.internal.h \
|
|
|
|
|
libc/macros.internal.h \
|
|
|
|
|
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/nexgen32e/vidya.internal.h \
|
|
|
|
|
libc/nt/pedef.internal.h \
|
|
|
|
|
libc/runtime/e820.internal.h \
|
|
|
|
|
libc/runtime/mman.internal.h \
|
|
|
|
|
libc/runtime/pc.internal.h \
|
Support aarch64, silicon, arm, i486, riscv64, mipsel, ppc and s390x
Your APE binaries will now run on eight hardware architectures. The
tradeoff is this change adds about 800kb of bloat to the executable
which to be fair is still more than half as small as Go hello world
Your APE shell script extracts an embedded build of Blink, based on
`$(uname -m)`. The Blink binaries are statically-linked (manylinux)
which means, they'll run on every distro's stock install, including
Apple M1's that haven't enabled Rosetta. Blink's emulation has been
designed to be nearly as fast as Rosetta, using a JIT technique for
faster startup time. Blink has also been tested more thoroughly, w/
emulating Cosmopolitan software, since we're the ones who wrote it.
2023-01-05 22:29:21 +00:00
|
|
|
|
libc/sysv/consts/prot.h \
|
2023-06-17 14:55:35 +00:00
|
|
|
|
ape/blink-linux-aarch64.gz \
|
|
|
|
|
ape/blink-xnu-aarch64.gz
|
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
|
2022-05-22 11:51:02 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=0b01111001 -g $(APE_LOADER_FLAGS)
|
2021-10-02 15:17:04 +00:00
|
|
|
|
o/$(MODE)/ape/loader-gcc.asm: ape/loader.c
|
2022-05-22 11:51:02 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=0b01111001 -S -g0 $(APE_LOADER_FLAGS)
|
|
|
|
|
o/$(MODE)/ape/loader-clang.asm: ape/loader.c
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CLANG) -DSUPPORT_VECTOR=0b01111001 -S -g0 $(APE_LOADER_FLAGS)
|
|
|
|
|
|
2023-07-01 12:10:12 +00:00
|
|
|
|
o/$(MODE)/ape/loader-xnu.o: ape/loader.c
|
2022-05-22 11:51:02 +00:00
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=0b00001000 -g $(APE_LOADER_FLAGS)
|
|
|
|
|
o/$(MODE)/ape/loader-xnu-gcc.asm: ape/loader.c
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) -DSUPPORT_VECTOR=0b00001000 -S -g0 $(APE_LOADER_FLAGS)
|
|
|
|
|
o/$(MODE)/ape/loader-xnu-clang.asm: ape/loader.c
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CLANG) -DSUPPORT_VECTOR=0b00001000 -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
|
|
|
|
|
o/$(MODE)/ape/ape.macho: o/$(MODE)/ape/ape.macho.dbg
|
|
|
|
|
|
2023-06-10 16:15:19 +00:00
|
|
|
|
o/$(MODE)/ape/ape.elf.dbg: private \
|
|
|
|
|
LDFLAGS += \
|
|
|
|
|
-z common-page-size=0x10 \
|
|
|
|
|
-z max-page-size=0x10
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/$(MODE)/ape/ape.elf.dbg: \
|
|
|
|
|
o/$(MODE)/ape/loader.o \
|
|
|
|
|
o/$(MODE)/ape/loader-elf.o \
|
2021-10-02 15:17:04 +00:00
|
|
|
|
ape/loader.lds
|
2023-06-10 16:15:19 +00:00
|
|
|
|
@$(ELFLINK)
|
2021-08-12 07:42:14 +00:00
|
|
|
|
|
2023-06-10 16:15:19 +00:00
|
|
|
|
o/$(MODE)/ape/ape.macho.dbg: private \
|
|
|
|
|
LDFLAGS += \
|
|
|
|
|
-z common-page-size=0x10 \
|
|
|
|
|
-z max-page-size=0x10
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/$(MODE)/ape/ape.macho.dbg: \
|
|
|
|
|
o/$(MODE)/ape/loader-xnu.o \
|
|
|
|
|
o/$(MODE)/ape/loader-macho.o \
|
2023-07-01 12:10:12 +00:00
|
|
|
|
ape/loader.lds
|
2023-06-10 16:15:19 +00:00
|
|
|
|
@$(ELFLINK)
|
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 \
|
2022-09-08 09:48:17 +00:00
|
|
|
|
o/$(MODE)/ape/public/ape.lds \
|
2022-07-21 16:16:38 +00:00
|
|
|
|
o/$(MODE)/ape/ape.elf \
|
|
|
|
|
o/$(MODE)/ape/ape.macho \
|
|
|
|
|
o/$(MODE)/ape/ape-copy-self.o \
|
2021-04-08 04:01:57 +00:00
|
|
|
|
o/$(MODE)/ape/ape-no-modify-self.o
|
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
|
|
|
|
|
o/$(MODE)/ape/ape.o: ape/ape.S
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $<
|
|
|
|
|
|
|
|
|
|
o/$(MODE)/ape/ape.o: \
|
2023-06-17 14:55:35 +00:00
|
|
|
|
ape/blink-linux-aarch64.gz \
|
|
|
|
|
ape/blink-xnu-aarch64.gz
|
2023-05-09 08:56:56 +00:00
|
|
|
|
|
|
|
|
|
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/intrin/bits.h \
|
|
|
|
|
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 \
|
|
|
|
|
libc/macros.internal.h \
|
|
|
|
|
libc/nt/pedef.internal.h \
|
|
|
|
|
libc/str/str.h \
|
2023-06-10 16:15:19 +00:00
|
|
|
|
libc/zip.internal.h
|