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
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,7 @@ pub mut:
157
157
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)
158
158
retry_compilation bool=true// retry the compilation with another C compiler, if tcc fails.
159
159
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
160
+
macosx_version_min string='10.7'// relevant only for macos and ios targets
160
161
// TODO Convert this into a []string
161
162
cflags string// Additional options which will be passed to the C compiler *before* other options.
162
163
ldflags string// Additional options which will be passed to the C compiler *after* everything else.
0 commit comments