mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
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:
parent
13763f3b8f
commit
beb8749c5c
@ -1,4 +1,7 @@
|
||||
#!/usr/bin/env python
|
||||
import sys
|
||||
|
||||
sys.dont_write_bytecode = True
|
||||
|
||||
from lit.main import main
|
||||
|
||||
|
@ -3,6 +3,8 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.dont_write_bytecode = True
|
||||
|
||||
config_map = {}
|
||||
|
||||
def map_config(source_dir, site_config):
|
||||
|
Loading…
Reference in New Issue
Block a user