Revision 0b49b2f5b2b07a413978c636e6675c7f789f7d00 authored by juj on 22 July 2014, 12:25:01 UTC, committed by juj on 22 July 2014, 12:25:01 UTC
add GLUT_STENCIL to glut display mode flags in library_egl.js
2 parent s d9c6bf6 + b3a23c2
Raw File
em++
#!/usr/bin/env python2

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

import os, subprocess, sys
from tools import shared

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

back to top