diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-03 15:07:33 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-03 15:07:33 -0800 |
commit | a122841331980a08a2283a555cadd9ba314240c7 (patch) | |
tree | aa7cb3d2886861c9ccc11f2a782a2f8c7c4e158b | |
parent | 14c1386a10eb605423ea6cbf8b7db54af8e7c12b (diff) | |
parent | 49c3db581aaf5122a10e500839989330b4f7e45f (diff) |
Merge pull request #214 from ehsan/suffixes
Add the so and dll suffixes as bitcode suffixes as well
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -239,7 +239,7 @@ if EMMAKEN_CFLAGS: CC_ADDITIONAL_ARGS += EMMAKEN_CFLAGS.split(' ') # ---------------- Utilities --------------- SOURCE_SUFFIXES = ('.c', '.cpp', '.cxx', '.cc') -BITCODE_SUFFIXES = ('.bc', '.o', '.a', '.dylib') +BITCODE_SUFFIXES = ('.bc', '.o', '.a', '.dylib', '.so', '.dll') ASSEMBLY_SUFFIXES = ('.ll',) def unsuffixed(name): |