configure.ac line 107:
AC_CHECK_PROG(FILECHECK,FileCheck,yes,no,path = "$CLANG_PREFIX/bin:$PATH:/usr/lib64/llvm")
should be:
AC_CHECK_PROG(FILECHECK,FileCheck,yes,no,$CLANG_PREFIX/bin:$PATH:/usr/lib64/llvm)
otherwise "llvm FileCheck" cannot be found when configuring:
checking for FileCheck... no
configure: error: Please install LLVM FileCheck before configuring.
configure.ac line 107:
AC_CHECK_PROG(FILECHECK,FileCheck,yes,no,path = "$CLANG_PREFIX/bin:$PATH:/usr/lib64/llvm")
should be:
AC_CHECK_PROG(FILECHECK,FileCheck,yes,no,$CLANG_PREFIX/bin:$PATH:/usr/lib64/llvm)
otherwise "llvm FileCheck" cannot be found when configuring:
checking for FileCheck... no
configure: error: Please install LLVM FileCheck before configuring.