Skip to content

Commit 05e7d5a

Browse files
author
Cong Liu
committed
[win] ship with libexif.dll
libexif is loaded on Windows at start up. When loading failed, it will generate debug.log in the same directory of nw.exe without `--enable-logging`. Ship `libexif.dll` with NW.js will fix this issue. On Mac OS X, it's already shipped with NW.js. On Linux, it loads `libexif.so.12` in system path. Fixed nwjs#4637
1 parent 1a750fd commit 05e7d5a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/package_binaries.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@ def generate_target_nw(platform_name, arch, version):
191191
'nw_100_percent.pak',
192192
'nw_200_percent.pak',
193193
'dbghelp.dll',
194-
'ffmpeg.dll'
194+
'ffmpeg.dll',
195+
# To be removed in CR51
196+
'libexif.dll',
195197
]
196198
if flavor == 'sdk':
197199
target['input'].append('nwjc.exe')

0 commit comments

Comments
 (0)