This repository was archived by the owner on Dec 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
52 lines (44 loc) · 1.75 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
AC_INIT(9x, 1.0.0, https://github.com/cleanbaja/CrecentOS/issues, ninex)
AC_COPYRIGHT([Copyright (c) 2022 cleanbaja, All Rights Reserved.])
# Search for the programs we need...
AC_PROG_INSTALL
AC_CHECK_PROG([NASM_LOCATED], [nasm], [yes])
if ! test "x$NASM_LOCATED" = "xyes"; then
AC_MSG_ERROR([NASM (Netwide Assembler) is not present on this system, please install before running!])
fi
# Find the build dir, the current date, and export them all
BUILDDIR="$(pwd -P)"
CUR_DATE="$(date +'%b %d, %Y')"
AC_SUBST(BUILDDIR, [$BUILDDIR])
AC_SUBST(CONFIG_DATE, [$CUR_DATE])
# Kernel features that can be enabled/disabled
#----------------------------------------------#
AC_ARG_ENABLE(earlyconsole,
AS_HELP_STRING([--disable-earlyconsole], [disables the use of the stivale2 terminal as a early logging output, required if not using limine]),
LIMINE_EARLYCONSOLE="$enableval")
# If we're on aarch64, disable the LIMINE_EARLYCONSOLE, even if the flag isn't passed
if test "x$ARCH" = "xaarch64"; then
LIMINE_EARLYCONSOLE=""
fi
if test "x$LIMINE_EARLYCONSOLE" = "xno"; then
LIMINE_EARLYCONSOLE=""
else
LIMINE_EARLYCONSOLE="yes"
fi
AC_SUBST(LIMINE_EARLYCONSOLE, [$LIMINE_EARLYCONSOLE])
#----------------------------------------------#
# Kernel arguments
AC_ARG_VAR(ARCH, [Kernel CPU Architecture [x86_64]])
AC_ARG_VAR(KERNEL_CFLAGS, [Kernel C Flags [-O2 -g]])
AC_ARG_VAR(KERNEL_LDFLAGS, [Kernel Linker Flags [empty]])
test "x$ARCH" = "x" && ARCH='x86_64'
test "x$KERNEL_CFLAGS" = "x" && KERNEL_CFLAGS='-O2 -g'
test "x$KERNEL_LDFLAGS" = "x" && KERNEL_LDFLAGS=' '
# Find the tools
AC_CHECK_TOOL(CC, gcc, :)
AC_CHECK_TOOL(LD, ld, :)
AC_CHECK_TOOL(AR, ar, :)
# Then finish the remaining parts of configuration
AC_PREFIX_DEFAULT(/boot)
AC_CONFIG_FILES(GNUmakefile config.h)
AC_OUTPUT