diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-02-02 15:04:14 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-02-02 15:04:14 -0700 |
| commit | 7af59c76e40d185ed1a8962c2d5fd0f88680d5a7 (patch) | |
| tree | fbd8eeaf799fbea424a546b0ae199ce91a7e70ad /src/parseh.cpp | |
| parent | 5824b15249c8fb42aba5ca347d7dc702a4a00a9f (diff) | |
| download | zig-7af59c76e40d185ed1a8962c2d5fd0f88680d5a7.tar.gz zig-7af59c76e40d185ed1a8962c2d5fd0f88680d5a7.zip | |
build: fix libc path finding
Diffstat (limited to 'src/parseh.cpp')
| -rw-r--r-- | src/parseh.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parseh.cpp b/src/parseh.cpp index cf577f0f0a..b8acbbcf48 100644 --- a/src/parseh.cpp +++ b/src/parseh.cpp @@ -1413,7 +1413,7 @@ int parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const ch clang_argv.append(ZIG_HEADERS_DIR); clang_argv.append("-isystem"); - clang_argv.append(buf_ptr(codegen->libc_include_path)); + clang_argv.append(buf_ptr(codegen->libc_include_dir)); for (int i = 0; i < codegen->clang_argv_len; i += 1) { clang_argv.append(codegen->clang_argv[i]); |
