@@ -29,6 +29,7 @@ static int usage(const char *arg0) {
29
29
" version print version number and exit\n "
30
30
" Compile Options:\n "
31
31
" --assembly [source] add assembly file to build\n "
32
+ " --cache-dir [path] override the cache directory\n "
32
33
" --color [auto|off|on] enable or disable colored error messages\n "
33
34
" --enable-timing-info print timing diagnostics\n "
34
35
" --libc-include-dir [path] directory where libc stdlib.h resides\n "
@@ -162,6 +163,7 @@ int main(int argc, char **argv) {
162
163
size_t ver_minor = 0 ;
163
164
size_t ver_patch = 0 ;
164
165
bool timing_info = false ;
166
+ const char *cache_dir = " zig-cache" ;
165
167
166
168
if (argc >= 2 && strcmp (argv[1 ], " build" ) == 0 ) {
167
169
const char *zig_exe_path = arg0;
@@ -180,6 +182,7 @@ int main(int argc, char **argv) {
180
182
ZigList<const char *> args = {0 };
181
183
args.append (zig_exe_path);
182
184
args.append (NULL ); // placeholder
185
+ args.append (NULL ); // placeholder
183
186
for (int i = 2 ; i < argc; i += 1 ) {
184
187
if (strcmp (argv[i], " --debug-build-verbose" ) == 0 ) {
185
188
verbose = true ;
@@ -189,6 +192,9 @@ int main(int argc, char **argv) {
189
192
} else if (i + 1 < argc && strcmp (argv[i], " --build-file" ) == 0 ) {
190
193
build_file = argv[i + 1 ];
191
194
i += 1 ;
195
+ } else if (i + 1 < argc && strcmp (argv[i], " --cache-dir" ) == 0 ) {
196
+ cache_dir = argv[i + 1 ];
197
+ i += 1 ;
192
198
} else {
193
199
args.append (argv[i]);
194
200
}
@@ -205,7 +211,14 @@ int main(int argc, char **argv) {
205
211
Buf build_file_dirname = BUF_INIT;
206
212
os_path_split (&build_file_abs, &build_file_dirname, &build_file_basename);
207
213
214
+ Buf *full_cache_dir = buf_alloc ();
215
+ os_path_resolve (buf_create_from_str (" ." ), buf_create_from_str (cache_dir), full_cache_dir);
216
+ Buf *path_to_build_exe = buf_alloc ();
217
+ os_path_join (full_cache_dir, buf_create_from_str (" build" ), path_to_build_exe);
218
+ codegen_set_cache_dir (g, full_cache_dir);
219
+
208
220
args.items [1 ] = buf_ptr (&build_file_dirname);
221
+ args.items [2 ] = buf_ptr (full_cache_dir);
209
222
210
223
bool build_file_exists;
211
224
if ((err = os_file_exists (&build_file_abs, &build_file_exists))) {
@@ -221,6 +234,7 @@ int main(int argc, char **argv) {
221
234
" General Options:\n "
222
235
" --help Print this help and exit\n "
223
236
" --build-file [file] Override path to build.zig\n "
237
+ " --cache-dir [path] Override path to cache directory\n "
224
238
" --verbose Print commands before executing them\n "
225
239
" --debug-build-verbose Print verbose debugging information for the build system itself\n "
226
240
" --prefix [prefix] Override default install prefix\n "
@@ -245,13 +259,13 @@ int main(int argc, char **argv) {
245
259
build_pkg->package_table .put (buf_create_from_str (" std" ), g->std_package );
246
260
g->root_package ->package_table .put (buf_create_from_str (" @build" ), build_pkg);
247
261
codegen_build (g);
248
- codegen_link (g, " build " );
262
+ codegen_link (g, buf_ptr (path_to_build_exe) );
249
263
250
264
Termination term;
251
- os_spawn_process (" ./build " , args, &term);
265
+ os_spawn_process (buf_ptr (path_to_build_exe) , args, &term);
252
266
if (term.how != TerminationIdClean || term.code != 0 ) {
253
267
fprintf (stderr, " \n Build failed. Use the following command to reproduce the failure:\n " );
254
- fprintf (stderr, " ./build " );
268
+ fprintf (stderr, " %s " , buf_ptr (path_to_build_exe) );
255
269
for (size_t i = 0 ; i < args.length ; i += 1 ) {
256
270
fprintf (stderr, " %s" , args.at (i));
257
271
}
@@ -331,6 +345,8 @@ int main(int argc, char **argv) {
331
345
objects.append (argv[i]);
332
346
} else if (strcmp (arg, " --assembly" ) == 0 ) {
333
347
asm_files.append (argv[i]);
348
+ } else if (strcmp (arg, " --cache-dir" ) == 0 ) {
349
+ cache_dir = argv[i];
334
350
} else if (strcmp (arg, " --target-arch" ) == 0 ) {
335
351
target_arch = argv[i];
336
352
} else if (strcmp (arg, " --target-os" ) == 0 ) {
@@ -478,12 +494,16 @@ int main(int argc, char **argv) {
478
494
479
495
Buf *zig_root_source_file = (cmd == CmdParseH) ? nullptr : in_file_buf;
480
496
497
+ Buf *full_cache_dir = buf_alloc ();
498
+ os_path_resolve (buf_create_from_str (" ." ), buf_create_from_str (cache_dir), full_cache_dir);
499
+
481
500
CodeGen *g = codegen_create (zig_root_source_file, target);
482
501
codegen_set_out_name (g, buf_out_name);
483
502
codegen_set_lib_version (g, ver_major, ver_minor, ver_patch);
484
503
codegen_set_is_release (g, is_release_build);
485
504
codegen_set_is_test (g, cmd == CmdTest);
486
505
codegen_set_linker_script (g, linker_script);
506
+ codegen_set_cache_dir (g, full_cache_dir);
487
507
if (each_lib_rpath)
488
508
codegen_set_each_lib_rpath (g, each_lib_rpath);
489
509
0 commit comments