rulimine/stage23/Makefile

247 lines
6.5 KiB
Makefile
Raw Normal View History

TARGET =
BUILDDIR =
ifeq ($(BUILDDIR), )
$(error BUILDDIR not specified)
endif
2021-03-02 12:23:43 +03:00
ifeq ($(TARGET), bios)
OBJCOPY_ARCH = elf32-i386
2021-03-02 12:23:43 +03:00
else ifeq ($(TARGET), uefi)
OBJCOPY_ARCH = elf64-x86-64
2021-03-02 12:23:43 +03:00
else
$(error Invalid target)
2021-03-02 12:23:43 +03:00
endif
TOOLCHAIN = x86_64-elf
TOOLCHAIN_CC = $(TOOLCHAIN)-gcc
TOOLCHAIN_LD = $(TOOLCHAIN)-ld
TOOLCHAIN_OBJCOPY = $(TOOLCHAIN)-objcopy
TOOLCHAIN_OBJDUMP = $(TOOLCHAIN)-objdump
TOOLCHAIN_READELF = $(TOOLCHAIN)-readelf
2021-06-30 19:22:50 +03:00
ifeq ($(shell command -v $(TOOLCHAIN_CC) ; ), )
TOOLCHAIN_CC := gcc
endif
2021-06-30 19:22:50 +03:00
ifeq ($(shell command -v $(TOOLCHAIN_LD) ; ), )
TOOLCHAIN_LD := ld
endif
2021-06-30 19:22:50 +03:00
ifeq ($(shell command -v $(TOOLCHAIN_OBJCOPY) ; ), )
TOOLCHAIN_OBJCOPY := objcopy
endif
2021-06-30 19:22:50 +03:00
ifeq ($(shell command -v $(TOOLCHAIN_OBJDUMP) ; ), )
TOOLCHAIN_OBJDUMP := objdump
endif
2021-06-30 19:22:50 +03:00
ifeq ($(shell command -v $(TOOLCHAIN_READELF) ; ), )
TOOLCHAIN_READELF := readelf
endif
2021-02-26 03:30:27 +03:00
COM_OUTPUT = false
E9_OUTPUT = false
2021-04-03 23:12:40 +03:00
BUILD_ID := $(shell dd if=/dev/urandom count=8 bs=1 2>/dev/null | od -An -t x8 | sed 's/^ /0x/')
LIMINE_VERSION := $(shell git describe --exact-match --tags `git log -n1 --pretty='%h'` 2>/dev/null || ( git log -n1 --pretty='%h' && echo -n "(`git branch --show-current`)" ) )
2020-10-18 07:23:39 +03:00
WERROR = -Werror
CFLAGS = -O3 -g -pipe -Wall -Wextra $(WERROR)
S2CFLAGS = -Os -g -pipe -Wall -Wextra $(WERROR)
2020-09-13 15:36:18 +03:00
INTERNAL_CFLAGS := \
2020-09-17 15:37:22 +03:00
-std=gnu11 \
-ffreestanding \
2020-09-13 15:36:18 +03:00
-fno-stack-protector \
2020-11-15 19:56:10 +03:00
-fno-omit-frame-pointer \
2021-03-02 12:23:43 +03:00
-fno-lto \
-fno-pic \
2020-09-21 13:46:42 +03:00
-Wno-address-of-packed-member \
-mno-80387 \
-mno-mmx \
-mno-3dnow \
-mno-sse \
-mno-sse2 \
2020-09-21 13:46:42 +03:00
-MMD \
-DBUILD_ID=$(BUILD_ID) \
-DLIMINE_VERSION='"$(LIMINE_VERSION)"' \
2021-02-26 03:30:27 +03:00
-DCOM_OUTPUT=$(COM_OUTPUT) \
-DE9_OUTPUT=$(E9_OUTPUT) \
2021-03-02 12:23:43 +03:00
-D$(TARGET)=1 \
2020-04-29 17:53:05 +03:00
-I. \
2020-09-21 13:46:42 +03:00
-I..
ifeq ($(TARGET), bios)
INTERNAL_CFLAGS += \
-m32 \
-march=i386 \
-fno-pie
endif
2021-03-02 12:23:43 +03:00
ifeq ($(TARGET), uefi)
INTERNAL_CFLAGS32 := \
$(INTERNAL_CFLAGS) \
-m32 \
-march=i386 \
-fpie
2021-03-02 12:23:43 +03:00
INTERNAL_CFLAGS += \
-m64 \
-march=x86-64 \
2021-03-02 12:23:43 +03:00
-I../gnu-efi/inc \
-I../gnu-efi/inc/x86_64 \
-fpie \
-mno-red-zone
2021-03-02 12:23:43 +03:00
endif
LDFLAGS =
2020-09-13 15:36:18 +03:00
INTERNAL_LDFLAGS := \
-nostdlib \
2021-03-02 12:23:43 +03:00
-z max-page-size=0x1000
ifeq ($(TARGET), bios)
INTERNAL_LDFLAGS += \
-melf_i386 \
-static
2021-03-02 12:23:43 +03:00
endif
ifeq ($(TARGET), uefi)
INTERNAL_LDFLAGS += \
-melf_x86_64 \
-static \
-pie \
--no-dynamic-linker \
-ztext
endif
2021-03-08 02:50:23 +03:00
.PHONY: all clean builddir
C_FILES := $(shell find -L ./ -type f -name '*.c' | sort)
2021-03-02 12:23:43 +03:00
ifeq ($(TARGET), bios)
ASM_FILES := $(shell find -L ./ -type f -name '*.asm' | sort)
2021-03-13 11:48:11 +03:00
OBJ := $(addprefix $(BUILDDIR)/, $(ASM_FILES:.asm=.o) $(C_FILES:.c=.o))
2021-03-02 12:23:43 +03:00
endif
ifeq ($(TARGET), uefi)
2021-03-13 11:48:11 +03:00
ASM_FILES := $(shell find -L ./ -type f -name '*.asm64' | sort)
OBJ := $(addprefix $(BUILDDIR)/, $(ASM_FILES:.asm64=.o) $(C_FILES:.c=.o))
endif
2021-03-08 02:50:23 +03:00
HEADER_DEPS := $(addprefix $(BUILDDIR)/, $(C_FILES:.c=.d))
2021-03-02 12:23:43 +03:00
ifeq ($(TARGET), bios)
all:
$(MAKE) builddir
$(MAKE) $(BUILDDIR)/limine_dbg.elf $(BUILDDIR)/limine.sys $(BUILDDIR)/stage2.bin $(BUILDDIR)/stage2.bin.gz
2021-03-02 12:23:43 +03:00
else ifeq ($(TARGET), uefi)
all:
$(MAKE) builddir
$(MAKE) $(BUILDDIR)/BOOTX64.EFI
2021-03-02 12:23:43 +03:00
endif
2021-03-08 02:50:23 +03:00
builddir:
for i in $(OBJ); do mkdir -p `dirname $$i`; done
2021-02-22 22:43:51 +03:00
2021-03-08 02:50:23 +03:00
$(BUILDDIR)/sys/smp_trampoline.bin: sys/smp_trampoline.real
nasm $< -f bin -o $@
$(BUILDDIR)/sys/smp_trampoline.o: $(BUILDDIR)/sys/smp_trampoline.bin
cd "`dirname $<`" && \
$(TOOLCHAIN_OBJCOPY) -B i8086 -I binary -O $(OBJCOPY_ARCH) "`basename $<`" $@
2021-03-08 02:50:23 +03:00
$(BUILDDIR)/font.o: font.bin
cd "`dirname $<`" && \
$(TOOLCHAIN_OBJCOPY) -B i8086 -I binary -O $(OBJCOPY_ARCH) "`basename $<`" $@
2021-03-08 02:50:23 +03:00
ifeq ($(TARGET), bios)
$(BUILDDIR)/stage2.bin.gz: $(BUILDDIR)/stage2.bin
gzip -n -9 < $< > $@
2021-02-21 01:04:06 +03:00
2021-03-08 02:50:23 +03:00
$(BUILDDIR)/stage2.bin: $(BUILDDIR)/limine.sys
dd if=$< bs=$$(( 0x$$($(TOOLCHAIN_READELF) -S $(BUILDDIR)/limine.elf | grep .stage3.text | sed 's/^.*] //' | awk '{print $$3}' | sed 's/^0*//') - 0x8000 )) count=1 of=$@
2021-02-21 01:04:06 +03:00
$(BUILDDIR)/stage2.map.o: $(BUILDDIR)/limine_stage2only.elf
2021-03-08 02:50:23 +03:00
GENSYMS="`pwd`/gensyms.sh" && \
cd "`dirname $<`" && \
"$$GENSYMS" $(TOOLCHAIN_OBJDUMP) $< stage2 32
$(BUILDDIR)/full.map.o: $(BUILDDIR)/limine_nomap.elf
GENSYMS="`pwd`/gensyms.sh" && \
cd "`dirname $<`" && \
"$$GENSYMS" $(TOOLCHAIN_OBJDUMP) $< full 32
2021-03-08 02:50:23 +03:00
$(BUILDDIR)/limine.sys: $(BUILDDIR)/limine.elf
$(TOOLCHAIN_OBJCOPY) -O binary $< $@
2020-11-15 19:56:10 +03:00
$(BUILDDIR)/limine_stage2only.elf: $(OBJ)
$(TOOLCHAIN_LD) $^ $(LDFLAGS) $(INTERNAL_LDFLAGS) -Tlinker_stage2only.ld -o $@ || \
2021-05-04 14:56:00 +03:00
( echo "This error may mean that stage 2 was trying to use stage 3 symbols before loading stage 3" && \
false )
2021-02-25 03:24:54 +03:00
$(BUILDDIR)/limine_nomap.elf: $(OBJ) $(BUILDDIR)/font.o $(BUILDDIR)/sys/smp_trampoline.o $(BUILDDIR)/stage2.map.o
$(TOOLCHAIN_LD) $^ $(LDFLAGS) $(INTERNAL_LDFLAGS) -Tlinker_nomap.ld -o $@
$(BUILDDIR)/limine.elf: $(OBJ) $(BUILDDIR)/font.o $(BUILDDIR)/sys/smp_trampoline.o $(BUILDDIR)/stage2.map.o $(BUILDDIR)/full.map.o
$(TOOLCHAIN_LD) $^ $(LDFLAGS) $(INTERNAL_LDFLAGS) -Tlinker.ld -o $@
$(BUILDDIR)/limine_dbg.elf: $(OBJ) $(BUILDDIR)/font.o $(BUILDDIR)/sys/smp_trampoline.o $(BUILDDIR)/stage2.map.o $(BUILDDIR)/full.map.o
$(TOOLCHAIN_LD) $^ $(LDFLAGS) $(INTERNAL_LDFLAGS) -Tlinker_dbg.ld -o $@
2021-03-08 02:50:23 +03:00
endif
2021-03-08 02:50:23 +03:00
ifeq ($(TARGET), uefi)
2021-04-08 02:15:35 +03:00
$(BUILDDIR)/full.map.o: $(BUILDDIR)/limine_efi_nomap.elf
GENSYMS="`pwd`/gensyms.sh" && \
cd "`dirname $<`" && \
"$$GENSYMS" $(TOOLCHAIN_OBJDUMP) $< full 64
2021-04-08 02:15:35 +03:00
2021-03-08 02:50:23 +03:00
$(BUILDDIR)/BOOTX64.EFI: $(BUILDDIR)/limine_efi.elf
2021-06-25 02:23:26 +03:00
$(TOOLCHAIN_OBJCOPY) -j .text -j .sdata -j .data -j .dynamic -j .dynsym -j .rel -j .rela -j .rel.* -j .rela.* -j .reloc -j .sbat --target efi-app-x86_64 --subsystem=10 $< $@
2021-04-08 02:15:35 +03:00
$(BUILDDIR)/limine_efi_nomap.elf: $(OBJ) $(BUILDDIR)/font.o $(BUILDDIR)/sys/smp_trampoline.o
$(TOOLCHAIN_LD) \
2021-04-08 02:15:35 +03:00
-Tlinker_uefi_nomap.ld \
../gnu-efi/gnuefi/crt0-efi-x86_64.o \
../gnu-efi/gnuefi/libgnuefi.a \
../gnu-efi/lib/x86_64/efi_stub.o \
$^ $(LDFLAGS) $(INTERNAL_LDFLAGS) -o $@
$(BUILDDIR)/limine_efi.elf: $(OBJ) $(BUILDDIR)/font.o $(BUILDDIR)/sys/smp_trampoline.o $(BUILDDIR)/full.map.o
$(TOOLCHAIN_LD) \
2021-04-08 02:15:35 +03:00
-Tlinker_uefi.ld \
../gnu-efi/gnuefi/crt0-efi-x86_64.o \
../gnu-efi/gnuefi/libgnuefi.a \
../gnu-efi/lib/x86_64/efi_stub.o \
$^ $(LDFLAGS) $(INTERNAL_LDFLAGS) -o $@
2021-03-08 02:50:23 +03:00
endif
2020-09-21 13:46:42 +03:00
-include $(HEADER_DEPS)
$(BUILDDIR)/%.o: %.c
$(TOOLCHAIN_CC) $(CFLAGS) $(INTERNAL_CFLAGS) -c $< -o $@
2021-03-13 11:48:11 +03:00
-include $(HEADER_DEPS)
ifeq ($(TARGET), bios)
$(BUILDDIR)/%.s2.o: %.s2.c
$(TOOLCHAIN_CC) $(S2CFLAGS) $(INTERNAL_CFLAGS) -c $< -o $@
endif
2021-03-13 11:48:11 +03:00
-include $(HEADER_DEPS)
ifeq ($(TARGET), uefi)
$(BUILDDIR)/%.32.o: %.32.c
$(TOOLCHAIN_CC) $(CFLAGS) $(INTERNAL_CFLAGS32) -c $< -o $@.32
$(TOOLCHAIN_OBJCOPY) -I elf32-i386 -O elf64-x86-64 $@.32 $@
rm $@.32
endif
$(BUILDDIR)/%.o: %.asm
2021-04-11 11:00:57 +03:00
nasm $< -F dwarf -g -Werror -f elf32 -o $@
2021-03-13 11:48:11 +03:00
$(BUILDDIR)/%.o: %.asm64
2021-04-11 11:00:57 +03:00
nasm $< -F dwarf -g -Werror -f elf64 -o $@
clean:
2021-03-08 02:50:23 +03:00
rm -rf $(BUILDDIR)