Merge pull request #33635 from akien-mga/emscripten-fix-1.39.1-support
HTML5: Fix support for Emscripten 1.39.1+
This commit is contained in:
commit
fea3890e1e
1 changed files with 1 additions and 4 deletions
|
@ -82,10 +82,7 @@ def configure(env):
|
|||
env['CXX'] = 'em++'
|
||||
env['LINK'] = 'emcc'
|
||||
|
||||
# Emscripten's ar has issues with duplicate file names, so use cc.
|
||||
env['AR'] = 'emcc'
|
||||
env['ARFLAGS'] = '-o'
|
||||
# emranlib is a noop, so it's safe to use with AR=emcc.
|
||||
env['AR'] = 'emar'
|
||||
env['RANLIB'] = 'emranlib'
|
||||
|
||||
# Use TempFileMunge since some AR invocations are too long for cmd.exe.
|
||||
|
|
Loading…
Reference in a new issue