From d3bb80a1bc6c5219a6f55b9dd625e7919b21ff82 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 19 Sep 2017 23:50:28 +0000 Subject: Make lit stop writing pyc files. Many svn-based buildbots seem to be getting stuck continually in tree conflicts due to the output of pyc files. I'm disabling these as a temporary measure in an attempt to get everything stable again. I'll try to remove this code once I understand the problem better. llvm-svn: 313698 --- llvm/utils/lit/lit.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'llvm/utils/lit') diff --git a/llvm/utils/lit/lit.py b/llvm/utils/lit/lit.py index 2c5ecfe1d40..22a8e7b016a 100755 --- a/llvm/utils/lit/lit.py +++ b/llvm/utils/lit/lit.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +import sys + +sys.dont_write_bytecode = True from lit.main import main -- cgit v1.2.3