319 lines
9.5 KiB
Makefile
319 lines
9.5 KiB
Makefile
# Nuke built-in rules and variables.
|
|
MAKEFLAGS += -rR
|
|
.SUFFIXES:
|
|
|
|
# This is the name that our final executable will have.
|
|
# Change as needed.
|
|
override OUTPUT := kernel
|
|
|
|
# Target architecture to build for. Default to x86_64.
|
|
ARCH := x86_64
|
|
|
|
# Install prefix; /usr/local is a good, standard default pick.
|
|
PREFIX := /usr/local
|
|
|
|
# Check if the architecture is supported.
|
|
ifeq ($(filter $(ARCH),aarch64 loongarch64 riscv64 x86_64),)
|
|
$(error Architecture $(ARCH) not supported)
|
|
endif
|
|
|
|
# Auto-detect x86_64-elf cross compiler from toolchain/local/.
|
|
ifeq ($(ARCH),x86_64)
|
|
TOOLCHAIN_PREFIX := $(shell cd .. && pwd)/toolchain/local/bin/x86_64-elf-
|
|
ifneq ($(wildcard $(TOOLCHAIN_PREFIX)gcc),)
|
|
CC := $(TOOLCHAIN_PREFIX)gcc
|
|
CXX := $(TOOLCHAIN_PREFIX)g++
|
|
AR := $(TOOLCHAIN_PREFIX)ar
|
|
endif
|
|
endif
|
|
|
|
# User controllable C compiler command.
|
|
CC ?= cc
|
|
|
|
# User controllable C++ compiler command.
|
|
CXX ?= c++
|
|
|
|
# User controllable Objective C compiler command.
|
|
OBJC := g++
|
|
|
|
# User controllable archiver command.
|
|
AR ?= ar
|
|
|
|
# User controllable C flags.
|
|
CFLAGS := -g -O2 -pipe
|
|
|
|
# User controllable C++ flags. We default to same as C flags.
|
|
CXXFLAGS := $(CFLAGS)
|
|
|
|
# User controllable C/C++ preprocessor flags. We set none by default.
|
|
CPPFLAGS :=
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
# User controllable nasm flags.
|
|
NASMFLAGS := -F dwarf -g
|
|
endif
|
|
|
|
# User controllable linker flags. We set none by default.
|
|
LDFLAGS :=
|
|
|
|
# Ensure the dependencies have been obtained.
|
|
ifneq ($(shell ( test '$(MAKECMDGOALS)' = clean || test '$(MAKECMDGOALS)' = distclean ); echo $$?),0)
|
|
ifeq ($(shell ( ! test -d freestnd-c-hdrs || ! test -d freestnd-cxx-hdrs || ! test -d cc-runtime || ! test -f src/limine.h ); echo $$?),0)
|
|
$(error Please run the ./get-deps script first)
|
|
endif
|
|
endif
|
|
|
|
# Check if CC is Clang.
|
|
override CC_IS_CLANG := $(shell ! $(CC) --version 2>/dev/null | grep 'clang' >/dev/null 2>&1; echo $$?)
|
|
|
|
# Check if CXX is Clang.
|
|
override CXX_IS_CLANG := $(shell ! $(CXX) --version 2>/dev/null | grep 'clang' >/dev/null 2>&1; echo $$?)
|
|
|
|
# Internal flags shared by both C and C++ compilers.
|
|
override SHARED_FLAGS := \
|
|
-Wall \
|
|
-Wextra \
|
|
-nostdinc \
|
|
-ffreestanding \
|
|
-fno-stack-protector \
|
|
-fno-stack-check \
|
|
-fno-PIC \
|
|
-ffunction-sections \
|
|
-fdata-sections
|
|
|
|
# Internal C/C++ preprocessor flags that should not be changed by the user.
|
|
override CPPFLAGS_C := \
|
|
-I src \
|
|
-isystem freestnd-c-hdrs/$(ARCH)/include \
|
|
$(CPPFLAGS) \
|
|
-DLIMINE_API_REVISION=3 \
|
|
-MMD \
|
|
-MP
|
|
|
|
# Internal C++ only preprocessor flags.
|
|
override CPPFLAGS_CXX := \
|
|
-I src \
|
|
-isystem freestnd-c-hdrs/$(ARCH)/include \
|
|
-isystem freestnd-cxx-hdrs/$(ARCH)/include \
|
|
$(CPPFLAGS) \
|
|
-DLIMINE_API_REVISION=3 \
|
|
-MMD \
|
|
-MP
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
# Internal nasm flags that should not be changed by the user.
|
|
override NASMFLAGS += \
|
|
-Wall
|
|
endif
|
|
|
|
# Architecture specific internal flags.
|
|
ifeq ($(ARCH),x86_64)
|
|
ifeq ($(CC_IS_CLANG),1)
|
|
override CC += \
|
|
-target x86_64-unknown-none
|
|
endif
|
|
ifeq ($(CXX_IS_CLANG),1)
|
|
override CXX += \
|
|
-target x86_64-unknown-none
|
|
endif
|
|
override SHARED_FLAGS += \
|
|
-m64 \
|
|
-march=x86-64 \
|
|
-mno-80387 \
|
|
-mno-mmx \
|
|
-mno-sse \
|
|
-mno-sse2 \
|
|
-mno-red-zone \
|
|
-mcmodel=kernel
|
|
override LDFLAGS += \
|
|
-Wl,-m,elf_x86_64
|
|
override NASMFLAGS += \
|
|
-f elf64
|
|
endif
|
|
ifeq ($(ARCH),aarch64)
|
|
ifeq ($(CC_IS_CLANG),1)
|
|
override CC += \
|
|
-target aarch64-unknown-none
|
|
endif
|
|
ifeq ($(CXX_IS_CLANG),1)
|
|
override CXX += \
|
|
-target aarch64-unknown-none
|
|
endif
|
|
override SHARED_FLAGS += \
|
|
-mgeneral-regs-only
|
|
override LDFLAGS += \
|
|
-Wl,-m,aarch64elf
|
|
endif
|
|
ifeq ($(ARCH),riscv64)
|
|
ifeq ($(CC_IS_CLANG),1)
|
|
override CC += \
|
|
-target riscv64-unknown-none
|
|
override CFLAGS += \
|
|
-march=rv64imac
|
|
else
|
|
override CFLAGS += \
|
|
-march=rv64imac_zicsr_zifencei
|
|
endif
|
|
ifeq ($(CXX_IS_CLANG),1)
|
|
override CXX += \
|
|
-target riscv64-unknown-none
|
|
override CXXFLAGS += \
|
|
-march=rv64imac
|
|
else
|
|
override CXXFLAGS += \
|
|
-march=rv64imac_zicsr_zifencei
|
|
endif
|
|
override SHARED_FLAGS += \
|
|
-mabi=lp64 \
|
|
-mno-relax
|
|
override LDFLAGS += \
|
|
-Wl,-m,elf64lriscv \
|
|
-Wl,--no-relax
|
|
endif
|
|
ifeq ($(ARCH),loongarch64)
|
|
ifeq ($(CC_IS_CLANG),1)
|
|
override CC += \
|
|
-target loongarch64-unknown-none
|
|
endif
|
|
ifeq ($(CXX_IS_CLANG),1)
|
|
override CXX += \
|
|
-target loongarch64-unknown-none
|
|
endif
|
|
override SHARED_FLAGS += \
|
|
-march=loongarch64 \
|
|
-mabi=lp64s
|
|
override LDFLAGS += \
|
|
-Wl,-m,elf64loongarch \
|
|
-Wl,--no-relax
|
|
endif
|
|
|
|
# Internal C flags that should not be changed by the user.
|
|
override CFLAGS += \
|
|
-std=gnu11 \
|
|
$(SHARED_FLAGS)
|
|
|
|
# Internal C++ flags that should not be changed by the user.
|
|
override CXXFLAGS += \
|
|
-std=gnu++20 \
|
|
-fno-rtti \
|
|
-fno-exceptions \
|
|
-fmodules-ts \
|
|
$(SHARED_FLAGS)
|
|
|
|
# Internal linker flags that should not be changed by the user.
|
|
override LDFLAGS += \
|
|
-Wl,--build-id=none \
|
|
-nostdlib \
|
|
-static \
|
|
-z max-page-size=0x1000 \
|
|
-Wl,--gc-sections \
|
|
-T linker-$(ARCH).ld
|
|
|
|
# Use "find" to glob all *.c, *.cpp, *.S, and *.asm files in the tree and obtain the
|
|
# object and header dependency file names.
|
|
override SRCFILES := $(shell cd src && find -L * -type f | LC_ALL=C sort)
|
|
override CFILES := $(filter %.c,$(SRCFILES))
|
|
override CXXFILES := $(filter %.cpp,$(SRCFILES))
|
|
override OBJCFILES := $(filter %.mm,$(SRCFILES))
|
|
override ASFILES := $(filter %.S,$(SRCFILES))
|
|
ifeq ($(ARCH),x86_64)
|
|
override NASMFILES := $(filter %.asm,$(SRCFILES))
|
|
endif
|
|
override OBJ := $(addprefix obj-$(ARCH)/,$(CFILES:.c=.c.o) $(CXXFILES:.cpp=.cpp.o) $(OBJCFILES:.mm=.mm.o) $(ASFILES:.S=.S.o))
|
|
ifeq ($(ARCH),x86_64)
|
|
override OBJ += $(addprefix obj-$(ARCH)/,$(NASMFILES:.asm=.asm.o))
|
|
endif
|
|
override HEADER_DEPS := $(addprefix obj-$(ARCH)/,$(CFILES:.c=.c.d) $(CXXFILES:.cpp=.cpp.d) $(OBJCFILES:.mm=.mm.d) $(ASFILES:.S=.S.d))
|
|
|
|
# Build number. src/Api/BuildNo.hpp holds MONTAUK_BUILD_NUMBER and is included
|
|
# (transitively) only by Api/Syscall.cpp. We regenerate (bump) it whenever any
|
|
# kernel object OR any userspace source changes, so the number embedded in the
|
|
# kernel tracks real rebuilds of the kernel/userspace. Api/Syscall.cpp.o is
|
|
# excluded from the prerequisites to avoid a dependency cycle (it depends on the
|
|
# header), and a clean build bumps exactly once.
|
|
override BUILDNO_HDR := src/Api/BuildNo.hpp
|
|
override BUILDNO_OBJ := obj-$(ARCH)/Api/Syscall.cpp.o
|
|
override PROG_SRC := $(shell find ../programs/src ../programs/include ../programs/lib \
|
|
-type f \( -name '*.c' -o -name '*.cpp' -o -name '*.h' -o -name '*.hpp' \
|
|
-o -name '*.S' -o -name '*.asm' \) 2>/dev/null)
|
|
|
|
# Default target. This must come first, before header dependencies.
|
|
.PHONY: all
|
|
all: bin-$(ARCH)/$(OUTPUT)
|
|
|
|
# Include header dependencies.
|
|
-include $(HEADER_DEPS)
|
|
|
|
# Bump the build number when any kernel object or userspace source is newer.
|
|
$(BUILDNO_HDR): $(filter-out $(BUILDNO_OBJ),$(OBJ)) $(PROG_SRC)
|
|
../scripts/bump-build.sh $@
|
|
|
|
# Force Syscall.cpp.o to recompile (and the kernel to relink) in the same pass
|
|
# the header is bumped, so the embedded number always matches BuildNo.hpp even
|
|
# on a clean build (where no .d dependency exists yet).
|
|
$(BUILDNO_OBJ): $(BUILDNO_HDR)
|
|
|
|
# Link rules for building the C compiler runtime.
|
|
cc-runtime-$(ARCH)/cc-runtime.a: GNUmakefile cc-runtime/*
|
|
rm -rf cc-runtime-$(ARCH)
|
|
cp -r cc-runtime cc-runtime-$(ARCH)
|
|
$(MAKE) -C cc-runtime-$(ARCH) -f cc-runtime.mk \
|
|
CC="$(CC)" \
|
|
AR="$(AR)" \
|
|
CFLAGS="$(CFLAGS)" \
|
|
CPPFLAGS='-isystem ../freestnd-c-hdrs/$(ARCH)/include -DCC_RUNTIME_NO_FLOAT'
|
|
|
|
# Link rules for the final executable.
|
|
bin-$(ARCH)/$(OUTPUT): GNUmakefile linker-$(ARCH).ld $(OBJ) cc-runtime-$(ARCH)/cc-runtime.a
|
|
mkdir -p "$$(dirname $@)"
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJ) cc-runtime-$(ARCH)/cc-runtime.a -o $@
|
|
|
|
# Compilation rules for *.c files.
|
|
obj-$(ARCH)/%.c.o: src/%.c GNUmakefile
|
|
mkdir -p "$$(dirname $@)"
|
|
$(CC) $(CFLAGS) $(CPPFLAGS_C) -c $< -o $@
|
|
|
|
# Compilation rules for *.cpp files.
|
|
obj-$(ARCH)/%.cpp.o: src/%.cpp GNUmakefile
|
|
mkdir -p "$$(dirname $@)"
|
|
$(CXX) $(CXXFLAGS) $(CPPFLAGS_CXX) -c $< -o $@
|
|
|
|
# Compilation rules for *.S files.
|
|
obj-$(ARCH)/%.S.o: src/%.S GNUmakefile
|
|
mkdir -p "$$(dirname $@)"
|
|
$(CC) $(CFLAGS) $(CPPFLAGS_C) -c $< -o $@
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
# Compilation rules for *.asm (nasm) files.
|
|
obj-$(ARCH)/%.asm.o: src/%.asm GNUmakefile
|
|
mkdir -p "$$(dirname $@)"
|
|
nasm $(NASMFLAGS) $< -o $@
|
|
endif
|
|
|
|
# Compilation rules for *.mm (Objective C) files.
|
|
obj-$(ARCH)/%.mm.o: src/%.mm GNUmakefile
|
|
mkdir -p "$$(dirname $@)"
|
|
$(OBJC) $(CXXFLAGS) $(CPPFLAGS_CXX) -c $< -o $@
|
|
|
|
# Remove object files and the final executable.
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf bin-$(ARCH) obj-$(ARCH) cc-runtime-$(ARCH)
|
|
|
|
# Remove everything built and generated including downloaded dependencies.
|
|
.PHONY: distclean
|
|
distclean:
|
|
rm -rf bin-* obj-* freestnd-c-hdrs freestnd-cxx-hdrs cc-runtime* src/limine.h
|
|
|
|
# Install the final built executable to its final on-root location.
|
|
.PHONY: install
|
|
install: all
|
|
install -d "$(DESTDIR)$(PREFIX)/share/$(OUTPUT)"
|
|
install -m 644 bin-$(ARCH)/$(OUTPUT) "$(DESTDIR)$(PREFIX)/share/$(OUTPUT)/$(OUTPUT)-$(ARCH)"
|
|
|
|
# Try to undo whatever the "install" target did.
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
rm -f "$(DESTDIR)$(PREFIX)/share/$(OUTPUT)/$(OUTPUT)-$(ARCH)"
|
|
-rmdir "$(DESTDIR)$(PREFIX)/share/$(OUTPUT)"
|