[compiler-rt] r208823 - Disabled litlint. It requires Python 2.7 or later

Greg Fitzgerald gregf at codeaurora.org
Wed May 14 16:20:31 PDT 2014


Author: garious
Date: Wed May 14 18:20:30 2014
New Revision: 208823

URL: http://llvm.org/viewvc/llvm-project?rev=208823&view=rev
Log:
Disabled litlint. It requires Python 2.7 or later

Modified:
    compiler-rt/trunk/lib/sanitizer_common/scripts/check_lint.sh

Modified: compiler-rt/trunk/lib/sanitizer_common/scripts/check_lint.sh
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/scripts/check_lint.sh?rev=208823&r1=208822&r2=208823&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/scripts/check_lint.sh (original)
+++ compiler-rt/trunk/lib/sanitizer_common/scripts/check_lint.sh Wed May 14 18:20:30 2014
@@ -50,7 +50,8 @@ run_lint() {
   if [[ "${SILENT}" != "1" ]]; then
     cat $TASK_LOG
   fi
-  ${LITLINT} "$@" 2>>$ERROR_LOG
+# litlint disabled because it requires Python 2.7 or later
+#  ${LITLINT} "$@" 2>>$ERROR_LOG
 }
 
 run_lint ${LLVM_LINT_FILTER} --filter=${LLVM_LINT_FILTER} \





More information about the llvm-commits mailing list