aboutsummaryrefslogtreecommitdiff
path: root/fdt
AgeCommit message (Collapse)AuthorFilesLines
2024-03-03Don't include subproject headers with -IAndrew Waterman1-0/+2
Use -iquote instead. This prevents our include paths from messing up the system headers depended upon by libstdc++. (The specific problem was syscall.h in fesvr/, which was interfering with libstdc++'s dependence on the system's syscall.h for SYS_futex.) Subproject headers can now be included in the following ways: #include "foo.h" // for a header local to this subproject #include <bar/baz.h>" // for a header in another subproject But no longer: #include <baz.h> // for a header in any subproject As a special case, libfdt needs itself to be added to the -I path, because their coding style is to use angle brackets for local headers.
2023-12-11Don't install spike's libfdt to avoid conflicts with system libfdtJerry Zhao1-2/+0
2023-08-16Install header files fdt.h and libfdt_env.h as needed by libfdt.hLIU Yu1-0/+2
2023-06-20libfdt: Install libfdt and libfdt.hJerry Zhao1-0/+5
2022-12-22Remove non-installed header lists from Makefile fragmentsAndrew Waterman1-5/+0
It's just dead code. (Dependences on headers are auto-generated as `.d` files.)
2021-11-10fixed fdt #include to search in local directory first (#856)Elmar Melcher1-2/+2
2020-12-29Fix compile warningsAndrew Waterman1-3/+1
2020-04-26fdt: import fdt library from OpenSBIChih-Min Chao15-0/+5522
Signed-off-by: Chih-Min Chao <chihmin.chao@sifive.com>