Skip to content

Commit 0433799

Browse files
committed
remove exp files for lld build
1 parent a2e1e90 commit 0433799

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ copy("copy_node") {
290290
} else {
291291
node_dir = "$root_out_dir/../Release" + suffix
292292
}
293-
sources = [ "$node_dir/node.dll", "$node_dir/node.dll.lib", "$node_dir/node.dll.exp" ]
293+
sources = [ "$node_dir/node.dll", "$node_dir/node.dll.lib"]
294294
outputs = [ "$root_out_dir/{{source_file_part}}" ]
295295
}
296296
}

tools/package_binaries.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,10 @@
9494

9595
if platform_name == 'win':
9696
libfile = os.path.join(binaries_location, 'nw.lib')
97-
expfile = os.path.join(binaries_location, 'nw.exp')
9897
libfile2 = os.path.join(binaries_location, 'node.lib')
99-
expfile2 = os.path.join(binaries_location, 'node.exp')
10098

10199
shutil.copy(os.path.join(binaries_location, 'nw.dll.lib'), libfile)
102-
shutil.copy(os.path.join(binaries_location, 'nw.dll.exp'), expfile)
103100
shutil.copy(os.path.join(binaries_location, 'node.dll.lib'), libfile2)
104-
shutil.copy(os.path.join(binaries_location, 'node.dll.exp'), expfile2)
105101

106102
if platform_name == 'win':
107103
arch = 'ia32'
@@ -333,7 +329,7 @@ def generate_target_others(platform_name, arch, version):
333329
target['output'] = ''
334330
target['compress'] = None
335331
if platform_name == 'win':
336-
target['input'] = ['nw.exp', 'nw.lib', 'node.exp', 'node.lib']
332+
target['input'] = ['nw.lib', 'node.lib']
337333
elif platform_name == 'linux' :
338334
target['input'] = []
339335
else:

0 commit comments

Comments
 (0)