aboutsummaryrefslogtreecommitdiff
path: root/tools/shared.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/shared.py')
-rw-r--r--tools/shared.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/shared.py b/tools/shared.py
index 73e2a9a7..04c2eec3 100644
--- a/tools/shared.py
+++ b/tools/shared.py
@@ -473,10 +473,9 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)''' % { 'winfix': '' if not WINDOWS e
@staticmethod
def link(files, target):
try_delete(target)
- stub = 'a.out' if not WINDOWS else 'a.exe'
- need_cleanup = not os.path.exists(stub)
- output = Popen([LLVM_LD, '-disable-opt'] + files + ['-b', target], stdout=PIPE).communicate()[0]
- if need_cleanup: try_delete(stub) # clean up stub left by the linker
+ stub = os.path.join(EMSCRIPTEN_TEMP_DIR, 'stub_deleteme')
+ output = Popen([LLVM_LD, '-disable-opt'] + files + ['-b', target, '-o', stub], stdout=PIPE).communicate()[0]
+ try_delete(stub) # clean up stub left by the linker
assert os.path.exists(target) and (output is None or 'Could not open input file' not in output), 'Linking error: ' + output
# Emscripten optimizations that we run on the .ll file