mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
381 B
21 lines
381 B
13 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
import os
|
||
|
import re
|
||
|
import subprocess
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def DoMain(*args):
|
||
|
cc = os.environ.get('CC', 'gcc')
|
||
|
stdin, stderr = os.pipe()
|
||
|
subprocess.call([cc, '-v'], stderr=stderr)
|
||
|
output = os.read(stdin, 4096)
|
||
|
match = re.search("\ngcc version (\d+\.\d+\.\d+)", output)
|
||
|
if match:
|
||
|
print(match.group(1))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
DoMain(*sys.argv)
|