beefytech / Beef_website

BeefLang website
Other
21 stars 19 forks source link

Specify minimum version for CMake #29

Closed disarray2077 closed 3 years ago

disarray2077 commented 3 years ago

Building LLVM currently depends on a CMake feature that was only introduced in version 3.15, but this isn't specified on the documentation, this PR aims to do so.

_The feature in question is the multiple-target support, as seen here: llvm_build.sh#L21_

bfiete commented 3 years ago

We probably shouldn't just put CMake 3.15, since it's not just that specific version that works - that's just the minimum requirement. CMake 3.15 or newer is probably better...

disarray2077 commented 3 years ago

Done, I made it clearer as you suggested :+1: