mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
parseh: ZIG_PARSEH_CFLAGS -> ZIG_NATIVE_PARSEH_CFLAGS
This commit is contained in:
parent
fb8700de6c
commit
87922bfae0
@ -1540,7 +1540,8 @@ int parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const ch
|
||||
clang_argv.append("-x");
|
||||
clang_argv.append("c");
|
||||
|
||||
char *ZIG_PARSEH_CFLAGS = getenv("ZIG_PARSEH_CFLAGS");
|
||||
if (c->codegen->is_native_target) {
|
||||
char *ZIG_PARSEH_CFLAGS = getenv("ZIG_NATIVE_PARSEH_CFLAGS");
|
||||
if (ZIG_PARSEH_CFLAGS) {
|
||||
Buf tmp_buf = BUF_INIT;
|
||||
char *start = ZIG_PARSEH_CFLAGS;
|
||||
@ -1556,6 +1557,7 @@ int parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const ch
|
||||
buf_init_from_str(&tmp_buf, start);
|
||||
clang_argv.append(buf_ptr(buf_create_from_buf(&tmp_buf)));
|
||||
}
|
||||
}
|
||||
|
||||
clang_argv.append("-isystem");
|
||||
clang_argv.append(ZIG_HEADERS_DIR);
|
||||
|
Loading…
Reference in New Issue
Block a user