| ... | @@ -163,6 +163,12 @@ fn make(step: *Step, options: Step.MakeOptions) !void { | ... | @@ -163,6 +163,12 @@ fn make(step: *Step, options: Step.MakeOptions) !void { |
| 163 | try argv_list.append("-fno-clang"); | 163 | try argv_list.append("-fno-clang"); |
| 164 | } | 164 | } |
| 165 | | 165 | |
| | 166 | try argv_list.append("--cache-dir"); |
| | 167 | try argv_list.append(b.cache_root.path orelse "."); |
| | 168 | |
| | 169 | try argv_list.append("--global-cache-dir"); |
| | 170 | try argv_list.append(b.graph.global_cache_root.path orelse "."); |
| | 171 | |
| 166 | try argv_list.append("--listen=-"); | 172 | try argv_list.append("--listen=-"); |
| 167 | | 173 | |
| 168 | if (!translate_c.target.query.isNative()) { | 174 | if (!translate_c.target.query.isNative()) { |