Skip to content

Commit 6bce45d

Browse files
committed
Disable LLD on windows
1 parent 42ced2d commit 6bce45d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

build/run.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,8 @@ def build_webrtc(
752752
f'target_cpu="{target_cpus[target]}"',
753753
"use_custom_libcxx=false",
754754
"use_custom_libcxx_for_host=false",
755-
"is_clang=true"
755+
"is_clang=true",
756+
'use_lld=false',
756757
]
757758
elif target in ('macos_x86_64', 'macos_arm64'):
758759
gn_args += [
@@ -1218,7 +1219,7 @@ def main():
12181219
commit = version_info.webrtc_commit
12191220
if args.commit:
12201221
commit = args.commit
1221-
1222+
12221223
print("Building for commit: ", commit)
12231224

12241225
# ソース取得

0 commit comments

Comments
 (0)