| ... | @@ -4776,6 +4776,14 @@ Error parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const | ... | @@ -4776,6 +4776,14 @@ Error parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const |
| 4776 | | 4776 | |
| 4777 | clang_argv.append(target_file); | 4777 | clang_argv.append(target_file); |
| 4778 | | 4778 | |
| | 4779 | if (codegen->verbose_cimport) { |
| | 4780 | fprintf(stderr, "clang"); |
| | 4781 | for (size_t i = 0; i < clang_argv.length; i += 1) { |
| | 4782 | fprintf(stderr, " %s", clang_argv.at(i)); |
| | 4783 | } |
| | 4784 | fprintf(stderr, "\n"); |
| | 4785 | } |
| | 4786 | |
| 4779 | // to make the [start...end] argument work | 4787 | // to make the [start...end] argument work |
| 4780 | clang_argv.append(nullptr); | 4788 | clang_argv.append(nullptr); |
| 4781 | | 4789 | |