From 7a7b3361d0c80c9583d95404986f67f107a0307c Mon Sep 17 00:00:00 2001 From: mbonadei Date: Mon, 24 Apr 2017 06:31:33 -0700 Subject: [PATCH] Landmine to clobber due to Win linking errors In CL https://codereview.webrtc.org/2832063003/ we have seen this problem: fatal error LNK1106: invalid file or disk full: cannot seek to 0x4065E16C Using landmines seems to be the only way to fix in this moment: https://bugs.chromium.org/p/chromium/issues/detail?id=615050 BUG=None Review-Url: https://codereview.webrtc.org/2835113003 Cr-Commit-Position: refs/heads/master@{#17842} --- tools-webrtc/get_landmines.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools-webrtc/get_landmines.py b/tools-webrtc/get_landmines.py index 099461aed1..a452835458 100755 --- a/tools-webrtc/get_landmines.py +++ b/tools-webrtc/get_landmines.py @@ -48,6 +48,8 @@ def print_landmines(): # pylint: disable=invalid-name print 'Clobber due to Win 64-bit Debug linking error (crbug.com/668961)' print ('Clobber due to Win Clang Debug linking errors in ' 'https://codereview.webrtc.org/2786603002') + print ('Clobber due to Win Debug linking errors in ' + 'https://codereview.webrtc.org/2832063003/') if platform() == 'mac': # platform == 'ios' doesn't work since it assumes GYP_DEFINES is set, which # is no longer the case.