Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
1261938ec42b0a1b82bec5fe901b7fc02a23d9a1
/
.
/
tools
/
ccc
/
xcc
blob: 70954aca95665fab91162beab8fd4be23784e649 [
file
] [
log
] [
blame
]
#!/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
()