move lib dirs to lib subdir

also start prefering NtDll API. so far:
 * NtQueryInformationFile
 * NtClose

adds a performance workaround for windows unicode conversion. but that
should probably be removed before merging
This commit is contained in:
Andrew Kelley 2019-07-15 17:54:50 -04:00
parent 51a3938b04
commit 49d1a4c562
7963 changed files with 237 additions and 36 deletions

View File

@ -83,24 +83,9 @@ pub fn build(b: *Builder) !void {
}
b.installDirectory(InstallDirectoryOptions{
.source_dir = "c_headers",
.source_dir = "lib",
.install_dir = .Lib,
.install_subdir = "zig" ++ fs.path.sep_str ++ "include",
});
b.installDirectory(InstallDirectoryOptions{
.source_dir = "libc",
.install_dir = .Lib,
.install_subdir = "zig" ++ fs.path.sep_str ++ "libc",
});
b.installDirectory(InstallDirectoryOptions{
.source_dir = "libcxx",
.install_dir = .Lib,
.install_subdir = "zig" ++ fs.path.sep_str ++ "libcxx",
});
b.installDirectory(InstallDirectoryOptions{
.source_dir = "libunwind",
.install_dir = .Lib,
.install_subdir = "zig" ++ fs.path.sep_str ++ "libunwind",
.install_subdir = "zig",
});
b.installDirectory(InstallDirectoryOptions{
.source_dir = "std",

Some files were not shown because too many files have changed in this diff Show More