| ... | ... | @@ -8774,6 +8774,11 @@ void add_cc_args(CodeGen *g, ZigList<const char *> &args, const char *out_dep_pa |
| 8774 | 8774 | } |
| 8775 | 8775 | } |
| 8776 | 8776 | |
| 8777 | for (size_t i = 0; i < g->framework_dirs.length; i += 1) { |
| 8778 | args.append("-iframework"); |
| 8779 | args.append(g->framework_dirs.at(i)); |
| 8780 | } |
| 8781 | |
| 8777 | 8782 | //note(dimenus): appending libc headers before c_headers breaks intrinsics |
| 8778 | 8783 | //and other compiler specific items |
| 8779 | 8784 | // According to Rich Felker libc headers are supposed to go before C language headers. |