mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
This change moves Bonnibel from a separate project into the jsix tree, and alters the project configuration to be jsix-specific. (I stopped using bonnibel for any other projects, so it's far easier to make it a custom generator for jsix.) The build system now also uses actual python code in `*.module` files to configure modules instead of TOML files. Target configs (boot, kernel-mode, user-mode) now moved to separate TOML files under `configs/` and can inherit from one another.
44 lines
1.4 KiB
TOML
44 lines
1.4 KiB
TOML
[variables]
|
|
cc = "clang"
|
|
cxx = "clang++"
|
|
ld = "ld.lld"
|
|
ar = "ar"
|
|
nasm = "nasm"
|
|
objcopy = "objcopy"
|
|
cog = "cog"
|
|
|
|
ccflags = [
|
|
"-I${source_root}/src/include",
|
|
"-I${source_root}/src/include/x86_64",
|
|
"-fcolor-diagnostics",
|
|
"-DVERSION_MAJOR=${version_major}",
|
|
"-DVERSION_MINOR=${version_minor}",
|
|
"-DVERSION_PATCH=${version_patch}",
|
|
"-DVERSION_GITSHA=0x${version_sha}",
|
|
'-DGIT_VERSION=\"${version_major}.${version_minor}.${version_patch}+${version_sha}\"',
|
|
'-DGIT_VERSION_WIDE=L\"${version_major}.${version_minor}.${version_patch}+${version_sha}\"',
|
|
"-Wformat=2", "-Winit-self", "-Wfloat-equal", "-Winline", "-Wmissing-format-attribute",
|
|
"-Wmissing-include-dirs", "-Wswitch", "-Wundef", "-Wdisabled-optimization",
|
|
"-Wpointer-arith", "-Wno-attributes", "-Wno-sign-compare", "-Wno-multichar",
|
|
"-Wno-div-by-zero", "-Wno-endif-labels", "-Wno-pragmas", "-Wno-format-extra-args",
|
|
"-Wno-unused-result", "-Wno-deprecated-declarations", "-Wno-unused-function",
|
|
"-Wno-address-of-packed-member", "-Wno-invalid-offsetof", "-Werror",
|
|
]
|
|
|
|
asflags = [
|
|
"-DVERSION_MAJOR=${version_major}",
|
|
"-DVERSION_MINOR=${version_minor}",
|
|
"-DVERSION_PATCH=${version_patch}",
|
|
"-DVERSION_GITSHA=0x${version_sha}",
|
|
"-I${source_root}/src/include",
|
|
]
|
|
|
|
cflags = ["-std=c11"]
|
|
cxxflags = ["-std=c++17"]
|
|
|
|
cogflags = [
|
|
"-I", "${source_root}/scripts",
|
|
"-D", "definitions_path=${source_root}/definitions"
|
|
]
|
|
|