diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2012-04-04 00:02:23 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2012-04-04 01:03:43 -0400 |
commit | 67055e21159e58c0e0f52f6dc6d77730faf2edd0 (patch) | |
tree | 1a23378a62fbfabdefe75dfa71e84c576a44fe7c /emcc | |
parent | c6e2a28f69e7ece46b711eb87b80ab110ff889a8 (diff) |
Add emscripten/system/lib to lib_dirs
So people can just drop bitcode libraries there and be found by emcc.
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -534,7 +534,7 @@ try: input_files = [] has_source_inputs = False - lib_dirs = [] + lib_dirs = [shared.path_from_root('system', 'lib')] libs = [] for i in range(len(newargs)): # find input files XXX this a simple heuristic. we should really analyze based on a full understanding of gcc params, # right now we just assume that what is left contains no more |-x OPT| things |