Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1136)

Unified Diff: base/allocator/prep_libc.py

Issue 12303010: fixes to libcmt stripper to correctly strip x64 objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/allocator/prep_libc.py
diff --git a/base/allocator/prep_libc.py b/base/allocator/prep_libc.py
index d4219830fb430f2e258a12b1c4027fd48875c4ef..4ad1398e83c1ef7c9821def98fe4be16fdcb1244 100755
--- a/base/allocator/prep_libc.py
+++ b/base/allocator/prep_libc.py
@@ -39,11 +39,21 @@ def main():
shutil.copyfile(os.path.join(vs_install_dir, 'libcmt.lib'), output_lib)
shutil.copyfile(os.path.join(vs_install_dir, 'libcmt.pdb'),
os.path.join(outdir, 'libcmt.pdb'))
+
vspaths = [
'build\\intel\\mt_obj\\',
- 'f:\\dd\\vctools\\crt_bld\\SELF_X86\\crt\\src\\build\\INTEL\\mt_obj\\',
- 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\crt\\src\\build\\INTEL\\mt_obj\\nativec\\\\',
- 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\crt\\src\\build\\INTEL\\mt_obj\\nativecpp\\\\',
+ 'f:\\dd\\vctools\\crt_bld\\SELF_X86\\' + \
scottmg 2013/02/19 18:11:01 nit; maybe a loop/comprehension and some %s would
+ 'crt\\src\\build\\INTEL\\mt_obj\\',
+ 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\' + \
+ 'crt\\src\\build\\INTEL\\mt_obj\\nativec\\\\',
+ 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\' + \
+ 'crt\\src\\build\\INTEL\\mt_obj\\nativecpp\\\\',
+ 'f:\\dd\\vctools\\crt_bld\\SELF_64_amd64\\' + \
+ 'crt\\src\\build\\amd64\\mt_obj\\',
+ 'F:\\dd\\vctools\\crt_bld\\SELF_64_amd64\\' + \
+ 'crt\\src\\build\\amd64\\mt_obj\\nativec\\\\',
+ 'F:\\dd\\vctools\\crt_bld\\SELF_64_amd64\\' + \
+ 'crt\\src\\build\\amd64\\mt_obj\\nativecpp\\\\',
]
objfiles = ['malloc', 'free', 'realloc', 'new', 'delete', 'new2', 'delete2',
'align', 'msize', 'heapinit', 'expand', 'heapchk', 'heapwalk',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698