diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-11 11:54:22 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-11 11:54:22 -0800 |
commit | 4191d90052d145d1a98c95d912b0965b0e1be5a7 (patch) | |
tree | 37fab14bf11f325735e3d263055b50a4c31ba3be /emcc | |
parent | 7859e29000080188d8b43f549f5ba8ce29836887 (diff) |
emcc help update
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -142,12 +142,17 @@ Options that are modified or new in %s include: The target file, if specified (-o <target>), defines what will be generated: + <name>.js JavaScript (default) <name>.o LLVM bitcode <name>.bc LLVM bitcode <name>.html HTML with embedded JavaScript -''' % (this, this) +The -c option (which tells gcc not to run the linker) will +also cause LLVM bitcode to be generated, as %s only generates +JavaScript in the final linking stage of building. + +''' % (this, this, this) exit(0) # If this is a configure-type thing, just do that |