Update config

This commit is contained in:
Alex 2023-08-24 04:48:15 +03:00
parent 644edf1c7c
commit 03cd291f37
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -1,4 +1,5 @@
# If the OS we are building should be compiled for debugging purposes.
# If the OS we are building should be compiled
# for debugging purposes.
DEBUG = 1
# Operating system name.
@ -8,14 +9,14 @@ OSNAME = Fennix
OSARCH = amd64
# Kernel version.
KERNEL_VERSION = pre-alpha-0.0.0.1
KERNEL_VERSION = dev
# Which bootloader to use.
# Available bootloaders:
# - lynx - Lynx (still under development)
# - limine - Limine
# - lynx - Lynx (under development)
# - grub - GRUB
BOOTLOADER = limine
# - limine - Limine
BOOTLOADER = grub
BUILD_KERNEL = 1
BUILD_USERSPACE = 1
@ -29,15 +30,16 @@ COMPILER_PATH = tools/cross/bin
# The path of the Limine bootloader.
LIMINE_FOLDER = tools/limine
# Qemu path. If you want to use the one you have installed in your system,
# change it to /usr/bin/qemu-system- (do not include x86_64 or i386,
# it will be added automatically depending on the OSARCH)
# Qemu path. If you want to use the one
# you have installed in your system, change
# it to /usr/bin/qemu-system-
# (do not include x86_64 or i386, it will be
# added automatically depending on the OSARCH)
QEMU_PATH = tools/cross/bin/qemu-system-
# Set libc to use. Available options:
# - internal - Use the internal libc
# - musl - Use musl libc (linux syscalls)
# - mlibc - Use mlibc
USE_LIBC = internal
# Build all libraries as static libraries.
@ -52,6 +54,9 @@ USERSPACE_STATIC_LIBS = 0
# Make releated variables
# -----------------------
# Do not change anything below this line unless
# you know what you are doing.
ifeq ($(OSARCH), amd64)
COMPILER_ARCH = x86_64-fennix-