aboutsummaryrefslogtreecommitdiff
path: root/em++
blob: 5dd860f2493173d617483b22e8fa5c158a32fd39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

'''
See emcc.py. This script forwards to there, noting that we want C++ and not C by default
'''

import os, sys
from tools import shared

os.environ['EMMAKEN_CXX'] = '1'
exit(os.execvp(shared.EMCC, [shared.EMCC] + sys.argv[1:]))