mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-17 02:46:00 +00:00

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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313698 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
129 B
Python
Executable File
10 lines
129 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
|
|
sys.dont_write_bytecode = True
|
|
|
|
from lit.main import main
|
|
|
|
if __name__=='__main__':
|
|
main()
|