You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vlib/v/pref/pref.v
+4Lines changed: 4 additions & 0 deletions
Original file line number
Original file line
Diff line number
Diff line change
@@ -154,6 +154,7 @@ pub mut:
154
dump_files string// `-dump-files files.txt` - let V store all V or .template file paths, that were used by the compiled program in `files.txt`, one path per line.
154
dump_files string// `-dump-files files.txt` - let V store all V or .template file paths, that were used by the compiled program in `files.txt`, one path per line.
155
use_cache bool// when set, use cached modules to speed up subsequent compilations, at the cost of slower initial ones (while the modules are cached)
155
use_cache bool// when set, use cached modules to speed up subsequent compilations, at the cost of slower initial ones (while the modules are cached)
156
retry_compilation bool=true// retry the compilation with another C compiler, if tcc fails.
156
retry_compilation bool=true// retry the compilation with another C compiler, if tcc fails.
157
+
use_os_system_to_run bool// when set, use os.system() to run the produced executable, instead of os.new_process; works around segfaults on macos, that may happen when xcode is updated
157
// TODO Convert this into a []string
158
// TODO Convert this into a []string
158
cflags string// Additional options which will be passed to the C compiler *before* other options.
159
cflags string// Additional options which will be passed to the C compiler *before* other options.
159
ldflags string// Additional options which will be passed to the C compiler *after* everything else.
160
ldflags string// Additional options which will be passed to the C compiler *after* everything else.
0 commit comments