2015-11-13 00:15:26 +03:00
|
|
|
#!/usr/bin/env python
|
2011-11-21 09:02:46 +04:00
|
|
|
|
2015-11-13 00:15:26 +03:00
|
|
|
# This script should work in python 2 *or* 3. It loads emcc.py, which needs python 2.
|
2011-11-21 09:02:46 +04:00
|
|
|
|
2018-01-11 23:46:13 +03:00
|
|
|
from tools import python_selector
|
2015-11-16 22:21:44 +03:00
|
|
|
|
2015-11-13 00:15:26 +03:00
|
|
|
import sys
|
2011-11-21 09:02:46 +04:00
|
|
|
|
2018-01-11 23:46:13 +03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
python_selector.run(__file__, profile=True)
|
|
|
|
|