diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-11-19 19:30:36 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-11-19 20:46:52 +0200 |
commit | fb17b94f0fb035deffd8dc9999a04cb764e295c3 (patch) | |
tree | 776ef735747c14024ac37fdda054e14abbb7ce47 /indra/newview | |
parent | acce727c1291bca942fc3f79088c4c637fd762e1 (diff) |
SL-14012 Crashes from Win10 are sent with uninformative callstacks #2
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index c6f149b5fe..6d231040f7 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -424,9 +424,6 @@ class WindowsManifest(ViewerManifest): def final_exe(self): return self.exec_name()+".exe" - def final_pdb(self): - return self.exec_name()+".pdb" - def finish_build_data_dict(self, build_data_dict): build_data_dict['Executable'] = self.final_exe() build_data_dict['AppName'] = self.app_name() @@ -492,10 +489,6 @@ class WindowsManifest(ViewerManifest): if self.is_packaging_viewer(): # Find secondlife-bin.exe in the 'configuration' dir, then rename it to the result of final_exe. self.path(src='%s/secondlife-bin.exe' % self.args['configuration'], dst=self.final_exe()) - # Bugsplat for some reason requires a match between user's exe and supplied pdb on Windows 10 - # this feels wrong and doesn't make any sense, since often we are supposed to match a whole - # folder of symbol files to a random exe. But Bugsplat says 'it's expected' so just rename files. - self.ccopyfile(src='%s/secondlife-bin.pdb' % self.args['configuration'], dst='%s/%s' % (self.args['configuration'], self.final_pdb())) with self.prefix(src=os.path.join(pkgdir, "VMP")): # include the compiled launcher scripts so that it gets included in the file_list |