aboutsummaryrefslogtreecommitdiff
path: root/tools/ccc/xcc
blob: 70954aca95665fab91162beab8fd4be23784e649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python

import sys
from ccclib import Driver
        
def main():
    d = Driver.Driver()
    # FIXME: We should pass program name here as well.
    d.run(sys.argv[1:])

if __name__=='__main__':
    main()