зеркало из https://github.com/mozilla/pjs.git
Bug 475165 - Use LZX compression on pdb files in symbol store. r=ted
This commit is contained in:
Родитель
594e231404
Коммит
881857edbe
|
@ -608,8 +608,8 @@ class Dumper_Win32(Dumper):
|
||||||
# try compressing it
|
# try compressing it
|
||||||
compressed_file = os.path.splitext(full_path)[0] + ".pd_"
|
compressed_file = os.path.splitext(full_path)[0] + ".pd_"
|
||||||
# ignore makecab's output
|
# ignore makecab's output
|
||||||
success = call(["makecab.exe", full_path, compressed_file],
|
success = call(["makecab.exe", "/D", "CompressionType=LZX", "/D", "CompressionMemory=21",
|
||||||
stdout=open("NUL:","w"), stderr=STDOUT)
|
full_path, compressed_file], stdout=open("NUL:","w"), stderr=STDOUT)
|
||||||
if success == 0 and os.path.exists(compressed_file):
|
if success == 0 and os.path.exists(compressed_file):
|
||||||
os.unlink(full_path)
|
os.unlink(full_path)
|
||||||
print os.path.splitext(rel_path)[0] + ".pd_"
|
print os.path.splitext(rel_path)[0] + ".pd_"
|
||||||
|
|
Загрузка…
Ссылка в новой задаче