search for: python_version_str

Displaying 3 results from an estimated 3 matches for "python_version_str".

2016 Feb 23
2
Can lit be upgraded to assume Python 2.7?
In the root llvm/CMakeLists.txt we have: if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 ) message(FATAL_ERROR "Python 2.7 or newer is required") endif() But lit seems to still be stuck in a Python 2.5 world. For example, detectCPUs is redundant now that we have multiprocessing.cpu_count() (multiprocessing requires >=2.6). And there are a bunch of o...
2016 Feb 24
3
Can lit be upgraded to assume Python 2.7?
...istopher <echristo at gmail.com> wrote: > > Seems reasonable to me. Chris? > > On Mon, Feb 22, 2016, 8:40 PM Sean Silva via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > In the root llvm/CMakeLists.txt we have: > > if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 ) > message(FATAL_ERROR "Python 2.7 or newer is required") > endif() > > But lit seems to still be stuck in a Python 2.5 world. For example, detectCPUs is redundant now that we have multiprocessing.cpu_count() (multiprocessing requires >=2.6). And th...
2016 Feb 24
0
Can lit be upgraded to assume Python 2.7?
..., at 1:32 PM, Eric Christopher <echristo at gmail.com> wrote: > > Seems reasonable to me. Chris? > > On Mon, Feb 22, 2016, 8:40 PM Sean Silva via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> In the root llvm/CMakeLists.txt we have: >> >> if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 ) >> message(FATAL_ERROR "Python 2.7 or newer is required") >> endif() >> >> But lit seems to still be stuck in a Python 2.5 world. For example, >> detectCPUs is redundant now that we have multiprocessing.cpu_count() >> (multiproc...