We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f03f1dc commit bda6a0cCopy full SHA for bda6a0c
emsdk.py
@@ -1604,9 +1604,6 @@ def load_dot_emscripten():
1604
1605
1606
def generate_dot_emscripten(active_tools):
1607
- temp_dir = sdk_path('tmp')
1608
- mkdir_p(temp_dir)
1609
-
1610
cfg = 'import os\n'
1611
cfg += "emsdk_path = os.path.dirname(os.environ.get('EM_CONFIG')).replace('\\\\', '/')\n"
1612
@@ -1627,10 +1624,9 @@ def generate_dot_emscripten(active_tools):
1627
1624
cfg += name + " = '" + value + "'\n"
1628
1625
1629
1626
cfg += '''\
1630
-TEMP_DIR = '%s'
1631
COMPILER_ENGINE = NODE_JS
1632
JS_ENGINES = [NODE_JS]
1633
-''' % temp_dir
+'''
1634
1635
cfg = cfg.replace("'" + emsdk_path(), "emsdk_path + '")
1636
0 commit comments