mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
1f06e5f0b9
Remove the "make iwyu" build target. Move the functionality into the recently introduced lint.fish script. Fix a lot, but not all, of the include-what-you-use errors. Specifically, it fixes all of the IWYU errors on my OS X server but only removes some of them on my Ubuntu 14.04 server. Fixes #2957
18 lines
987 B
Plaintext
18 lines
987 B
Plaintext
# Map file for the include-what-you-use tool on Linux.
|
|
[
|
|
{ include: ["<bits/fcntl-linux.h>", "private", "<fcntl.h>", "public"] },
|
|
{ include: ["<bits/mman-linux.h>", "private", "<sys/mman.h>", "public"] },
|
|
{ include: ["<bits/socket-linux.h>", "private", "<sys/socket.h>", "public"] },
|
|
{ include: ["<bits/socket_type.h>", "private", "<sys/socket.h>", "public"] },
|
|
{ include: ["<bits/local_lim.h>", "private", "<limits.h>", "public"] },
|
|
{ include: ["<tr1/memory>", "public", "<memory>", "public"] },
|
|
{ include: ["<features.h>", "public", "<stdio.h>", "public"] },
|
|
{ include: ["<features.h>", "public", "<stddef.h>", "public"] },
|
|
{ include: ["<features.h>", "public", "<unistd.h>", "public"] },
|
|
|
|
{ symbol: ["size_t", "private", "<unistd.h>", "public"] },
|
|
{ symbol: ["size_t", "private", "<stddef.h>", "public"] },
|
|
{ symbol: ["size_t", "private", "<stdlib.h>", "public"] },
|
|
{ symbol: ["uint64_t", "private", "<sys/types.h>", "public"] },
|
|
]
|