We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fa4df7 commit eb65acfCopy full SHA for eb65acf
tests/first_run.v
@@ -120,7 +120,9 @@ fn remove_repos_dir_if_exists() ! {
120
121
fn compile_gitly() {
122
ilog('Compile gitly')
123
- os.execute('v -o gitly.exe .')
+ // TODO: gitly segfaults with mbedtls (some interference with libgit2 initialisation) on Ubuntu 20.04. Investigate why exactly and fix it.
124
+ // Note that using `-d use_openssl` prevents tcc from working, so the compilation will be much slower:
125
+ os.execute('v -d use_libbacktrace -cg -keepc -d use_openssl -o gitly.exe .')
126
ilog('Compiled gitly.exe, size: ${os.file_size('gitly.exe')}')
127
}
128
0 commit comments