Switch all program and library Makefiles from host g++ (or the bare-metal x86_64-elf compiler) to x86_64-montauk-g++/gcc and drop the flags the target now owns: -nostdinc + kernel freestanding -isystem paths, -m64/-march, -fno-PIC, -mno-red-zone, -mcmodel=small, -static, -Wl,-m,elf_x86_64, -z max-page-size, --build-id=none. Deliberate policy flags stay (-ffreestanding, per-app SSE, -nostdlib + link.ld). Program builds now require the montauk toolchain and fail with a pointer to build-montauk-toolchain.sh; lib/ and libs/ keep the host fallback since the toolchain script bootstraps libc through it. Userspace is also now pinned to the cross GCC instead of drifting with the distro compiler. Co-Authored-By: Claude Fable 5 <[email protected]>
73 lines
1.4 KiB
Makefile
73 lines
1.4 KiB
Makefile
# Makefile for shared TLS helper library on MontaukOS
|
|
# Copyright (c) 2026 Daniel Hammer
|
|
|
|
MAKEFLAGS += -rR
|
|
.SUFFIXES:
|
|
|
|
# ---- Toolchain ----
|
|
|
|
TOOLCHAIN_PREFIX := $(shell cd ../../.. && pwd)/toolchain/local/bin/x86_64-montauk-
|
|
ifneq ($(wildcard $(TOOLCHAIN_PREFIX)gcc),)
|
|
CXX := $(TOOLCHAIN_PREFIX)g++
|
|
AR := $(TOOLCHAIN_PREFIX)ar
|
|
else
|
|
CXX := g++
|
|
AR := ar
|
|
endif
|
|
|
|
# ---- Paths ----
|
|
|
|
BEARSSL := ../bearssl
|
|
LIBC_INC := ../../include/libc
|
|
PROG_INC := ../../include
|
|
OBJDIR := obj
|
|
|
|
# ---- Compiler flags ----
|
|
|
|
CXXFLAGS := \
|
|
-std=gnu++20 \
|
|
-g -O2 -pipe \
|
|
-Wall \
|
|
-Wextra \
|
|
-Wno-unused-parameter \
|
|
-nostdinc \
|
|
-ffreestanding \
|
|
-fno-stack-protector \
|
|
-fno-stack-check \
|
|
-fno-PIC \
|
|
-fno-rtti \
|
|
-fno-exceptions \
|
|
-ffunction-sections \
|
|
-fdata-sections \
|
|
-m64 \
|
|
-march=x86-64 \
|
|
-mno-80387 \
|
|
-mno-mmx \
|
|
-mno-sse \
|
|
-mno-sse2 \
|
|
-mno-red-zone \
|
|
-mcmodel=small \
|
|
-I $(PROG_INC) \
|
|
-isystem $(LIBC_INC) \
|
|
-I $(BEARSSL)/inc \
|
|
-isystem ../../../kernel/freestnd-c-hdrs/x86_64/include \
|
|
-isystem ../../../kernel/freestnd-cxx-hdrs/x86_64/include
|
|
|
|
# ---- Target ----
|
|
|
|
TARGET := libtls.a
|
|
|
|
.PHONY: all clean
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(OBJDIR)/tls.o
|
|
$(AR) rcs $@ $^
|
|
|
|
$(OBJDIR)/tls.o: tls.cpp Makefile
|
|
@mkdir -p $(OBJDIR)
|
|
$(CXX) $(CXXFLAGS) -c $< -o $@
|
|
|
|
clean:
|
|
rm -rf $(OBJDIR) $(TARGET)
|