aboutsummaryrefslogtreecommitdiff
path: root/em++
diff options
context:
space:
mode:
Diffstat (limited to 'em++')
-rwxr-xr-xem++4
1 files changed, 2 insertions, 2 deletions
diff --git a/em++ b/em++
index be2ed37b..459ff2b2 100755
--- a/em++
+++ b/em++
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
'''
See emcc.py. This script forwards to there, noting that we want C++ and not C by default
@@ -8,5 +8,5 @@ import os, subprocess, sys
from tools import shared
os.environ['EMMAKEN_CXX'] = '1'
-exit(subprocess.call(['python', shared.EMCC] + sys.argv[1:]))
+exit(subprocess.call(['python2', shared.EMCC] + sys.argv[1:]))