kep-hack/prequeue.py
yenatch 120ba96649 handle preprocessing in one python procress; export asm labels
instead of running a process for each file, one process handles all files
rgbasm requires label EXPORT definitions for cross-object compiling. this is handled by globals.asm
2013-12-07 20:01:50 -05:00

30 lines
592 B
Python

# coding: utf-8
"""
Starting a new python process to preprocess each source file creates too much
overhead. Instead, a list of files to preprocess is fed into a script run from
a single process.
"""
import os
import sys
import preprocessor
def main():
processor = preprocessor.setup_processor()
for source in sys.argv[1:]:
dest = os.path.splitext(source)[0] + '.tx'
stdout = sys.stdout
sys.stdin = open(source, 'r')
sys.stdout = open(dest, 'w')
processor.preprocess()
sys.stdout = stdout
if __name__ == '__main__':
main()