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
This commit is contained in:
Zachary Turner 2017-09-19 23:50:28 +00:00
parent 014b0f24ae
commit d3bb80a1bc
2 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,7 @@
#!/usr/bin/env python
import sys
sys.dont_write_bytecode = True
from lit.main import main

View File

@ -3,6 +3,8 @@
import os
import sys
sys.dont_write_bytecode = True
config_map = {}
def map_config(source_dir, site_config):