From 6d125fcc3e6ca573a337b7a5a0897cdc0a638f3c Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 23 Oct 2013 17:53:40 -0700 Subject: [PATCH] emit emscripten version in emcc -v --- emcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emcc b/emcc index 4222caa3d..5b79b411b 100755 --- a/emcc +++ b/emcc @@ -542,7 +542,7 @@ There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR P exit(0) elif len(sys.argv) == 2 and sys.argv[1] == '-v': # -v with no inputs - print 'emcc (Emscripten GCC-like replacement + linker emulating GNU ld ) 2.0' + print 'emcc (Emscripten GCC-like replacement + linker emulating GNU ld ) %s' % shared.EMSCRIPTEN_VERSION exit(subprocess.call([shared.CLANG, '-v'])) def is_minus_s_for_emcc(newargs,i):