Compare commits
4 Commits
df8f9c6cf6
...
f0e14cf7e9
Author | SHA1 | Date | |
---|---|---|---|
f0e14cf7e9 | |||
5854e5e530 | |||
aab3a0a840 | |||
3442970678 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,5 @@
|
||||
Luna.iso
|
||||
toolchain/
|
||||
.vscode/
|
||||
build/
|
||||
initrd/boot/moon
|
||||
env-local.sh
|
||||
|
13
.vscode/c_cpp_properties.json
vendored
Normal file
13
.vscode/c_cpp_properties.json
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Luna",
|
||||
"compilerPath": "${workspaceFolder}/toolchain/x86-64-luna/bin/x86_64-luna-gcc",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++20",
|
||||
"intelliSenseMode": "gcc-x64",
|
||||
"configurationProvider": "ms-vscode.cmake-tools"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
17
.vscode/settings.json
vendored
Normal file
17
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"editor.formatOnSave": true,
|
||||
"editor.defaultFormatter": "xaver.clang-format",
|
||||
"files.exclude": {
|
||||
"toolchain/build/**": true,
|
||||
"toolchain/tarballs/**": true,
|
||||
},
|
||||
"search.exclude": {
|
||||
"toolchain/build/**": true,
|
||||
"toolchain/tarballs/**": true,
|
||||
},
|
||||
"editor.tabSize": 4,
|
||||
"files.trimFinalNewlines": true,
|
||||
"files.insertFinalNewline": true,
|
||||
"git.inputValidationLength": 72,
|
||||
"git.inputValidationSubjectLength": 72
|
||||
}
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
BSD 2-Clause License
|
||||
|
||||
Copyright (c) 2022, apio.
|
||||
Copyright (c) 2022-2023, apio.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
@ -1,6 +1,9 @@
|
||||
# The miscellaneous library shared between the Luna kernel and userspace, with stuff such as custom types, common routines and data structures.
|
||||
|
||||
file(GLOB HEADERS include/luna/*.h)
|
||||
|
||||
set(FREESTANDING_SOURCES
|
||||
${HEADERS}
|
||||
src/Format.cpp
|
||||
src/NumberParsing.cpp
|
||||
src/CString.cpp
|
||||
|
Loading…
x
Reference in New Issue
Block a user