diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-18 19:39:01 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-18 19:39:01 -0800 |
commit | 28686e4941103f51270df388d808d9bc7c00d566 (patch) | |
tree | 29f5af8e0155f2c4db841acc77c4cc9ee71b79be /emcc | |
parent | f6be80cbd7bd9e339da7ad5829e98c2f16ee2b1b (diff) |
move dlmalloc to system/lib
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -452,7 +452,7 @@ try: # dlmalloc def create_dlmalloc(): print >> sys.stderr, 'emcc: building dlmalloc for cache' - Popen([shared.EMCC, shared.path_from_root('src', 'dlmalloc.c'), '-g', '-o', in_temp('dlmalloc.o')], stdout=PIPE, stderr=PIPE).communicate() + Popen([shared.EMCC, shared.path_from_root('system', 'lib', 'dlmalloc.c'), '-g', '-o', in_temp('dlmalloc.o')], stdout=PIPE, stderr=PIPE).communicate() return in_temp('dlmalloc.o') def fix_dlmalloc(): # dlmalloc needs some sign correction. # If we are in mode 0, switch to 2. We will add our lines |