Update Makefile.conf

This commit is contained in:
Alex 2022-12-07 17:10:07 +02:00
parent 0f11f3f70c
commit 3eb464913c
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -22,6 +22,9 @@ BOOTLOADER=other
# The path of the cross-compiler.
COMPILER_PATH = tools/cross/bin
# The path of the toolchain cross-compiler.
TC_COMPILER_PATH = tools/cross/toolchain/bin
# The path of the Limine bootloader.
LIMINE_FOLDER = tools/limine
@ -48,3 +51,11 @@ else ifeq ($(OSARCH), aarch64)
COMPILER_ARCH = aarch64-elf-
QEMU_ARCH = aarch64
endif
ifeq ($(OSARCH), amd64)
TC_COMPILER_ARCH = x86_64-fennix-
else ifeq ($(OSARCH), i686)
TC_COMPILER_ARCH = i686-fennix-
else ifeq ($(OSARCH), aarch64)
TC_COMPILER_ARCH = aarch64-fennix-
endif