3fb092979e
GCC 13 is more strict about what C++ features are available in a freestanding (= build without standard library) build. The `stdlib.h` and `math.h` headers are redefined as part of libstdc++. If the object is built as freestanding, it should be assumed that none of the standard library functions are available. The solution in Haiku has been to add part of the standard library into the kernel shared object. The method of exposing them has been to allow the use of `stdlib.h` and `math.h` in the kernel and in kernel add-ons. This change allows that approach to continue. What it does, is that it defines specific headers which will be picked up when a module is built using private kernel headers. When building for the kernel (or for the boot module), it will bypass GCC 13's libstdc++ default behaviour of not including the POSIX/platform header with all the function definitions. An alternative to be considered for the longer term is to specifically define the parts of the C/C++ standard library that is available in the kernel in these headers, or create custom headers when building kernel modules (which is how Linux approaches it). Change-Id: Icab4614f642219fa77732b02401570708ee9a963 Reviewed-on: https://review.haiku-os.org/c/haiku/+/6645 Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk> |
||
---|---|---|
3rdparty | ||
build | ||
data | ||
docs | ||
headers | ||
src | ||
.editorconfig | ||
.gitignore | ||
.gitreview | ||
configure | ||
Jamfile | ||
Jamrules | ||
lgtm.yml | ||
License.md | ||
ReadMe.Compiling.md | ||
ReadMe.md |
Haiku
Homepage | Mailing Lists | IRC Channels | Issue Tracker | API docs
Haiku is an open-source operating system that specifically targets personal computing. Inspired by the BeOS, Haiku is fast, simple to use, easy to learn and yet very powerful.
Goals
- Sensible defaults with minimal configuration required.
- Clean, clear, concise code.
- Unified desktop environment.
Trying Haiku
Haiku provides pre-built nightly images and release images. Haiku is compatible with a large variety of hardware, but in case you don't want to "take the plunge" and install Haiku on bare metal, you can install it on a virtual machine (VM) instead. If you've never used a VM before, you can follow one of the "Emulating Haiku" guides.
Compiling Haiku
See ReadMe.Compiling
.
Contributing
Haiku is a meritocratic open source project with a large variety of tasks. Even if you can't write code, you can still help! Haiku needs designers, (technical) writers, translators, testers... Get involved and help out!
Contributing code
If you're submitting a patch to us, please make sure you're following the patch submitting guidelines.
If you're having trouble finding something in the source tree, you can use one of our web-based source code browsers:
- https://xref.landonf.org/ (OpenGrok, provided by Landon Fuller)
- https://git.haiku-os.org/ (git, provided by Haiku, Inc.)
Contributing documentation
The main piece of documentation that still needs work are the API docs (found
in the tree at docs/user
). Just find an undocumented class, write
documentation for it, and submit a patch.
Contributing translations
See wiki:i18n.
Contributing software ports
See HaikuPorts.
Contributing to our infrastructure
See Infrastructure.