aboutsummaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-18 19:39:01 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-18 19:39:01 -0800
commit28686e4941103f51270df388d808d9bc7c00d566 (patch)
tree29f5af8e0155f2c4db841acc77c4cc9ee71b79be /emcc
parentf6be80cbd7bd9e339da7ad5829e98c2f16ee2b1b (diff)
move dlmalloc to system/lib
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc b/emcc
index 97ced96e..37e916c9 100755
--- a/emcc
+++ b/emcc
@@ -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