Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-06 | AK: Rename <AK/AKString.h> to <AK/String.h> | Andreas Kling | |
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^) | |||
2019-07-09 | Kernel: Move VirtualAddress.h into VM/ | Andreas Kling | |
2019-07-09 | Kernel: Move File.{cpp,h} into FileSystem/ | Andreas Kling | |
Also tweak the kernel's Makefile to use -nostdinc and -nostdinc++. This prevents us from picking up random headers from ../Root, which may include older versions of kernel headers. Since we still need <initializer_list> for Vector, we specifically include the necessary GCC path. This is a bit hackish but it works for now. |