1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: remove os_mac.v and os_win.v, fix os.ls() on Windows

This commit is contained in:
Alexander Medvednikov
2019-06-30 14:55:48 +02:00
parent b0c844415d
commit 820aa3d3b3
4 changed files with 85 additions and 109 deletions

View File

@@ -489,7 +489,7 @@ mut args := ''
a << '-lm -ldl -lpthread'
}
// Find clang executable
fast_clang := '/usr/local/Cellar/llvm/8.0.0/bin/clang'
fast_clang := 'ff'///usr/local/Cellar/llvm/8.0.0/bin/clang'
args := a.join(' ')
mut cmd := if os.file_exists(fast_clang) {
'$fast_clang $args'