remove --override-std-dir. fix issues caused by moving std lib

This commit is contained in:
Andrew Kelley
2019-09-25 23:57:47 -04:00
parent ed36dbbd9c
commit dc7016344e
8 changed files with 15 additions and 54 deletions

View File

@@ -17,7 +17,7 @@
#include <stdio.h>
CodeGen *codegen_create(Buf *main_pkg_path, Buf *root_src_path, const ZigTarget *target,
OutType out_type, BuildMode build_mode, Buf *zig_lib_dir, Buf *override_std_dir,
OutType out_type, BuildMode build_mode, Buf *zig_lib_dir,
ZigLibCInstallation *libc, Buf *cache_dir, bool is_test_build);
CodeGen *create_child_codegen(CodeGen *parent_gen, Buf *root_src_path, OutType out_type,