diff options
author | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-07 18:59:50 +0000 |
---|---|---|
committer | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-07 18:59:50 +0000 |
commit | 3ee8e02bec65d80ed1ae652470af1c97f1575559 (patch) | |
tree | 99caae38048c553c8b5723ac27382801bfcdf2c5 /third_party | |
parent | ac594d35b245192f9cefe48ba57854071b9bdd99 (diff) | |
download | chromium_src-3ee8e02bec65d80ed1ae652470af1c97f1575559.zip chromium_src-3ee8e02bec65d80ed1ae652470af1c97f1575559.tar.gz chromium_src-3ee8e02bec65d80ed1ae652470af1c97f1575559.tar.bz2 |
The prep_libc script was not removing the new operator for the std::throw case.
This funciton is defined as part of tcmalloc; it shouldn't be in libcmt anymore.
BUG=none
TEST=none; we're removing code from libc. If this is a problem, it will fail to link.
Review URL: http://codereview.chromium.org/200036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25601 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/tcmalloc/prep_libc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/tcmalloc/prep_libc.sh b/third_party/tcmalloc/prep_libc.sh index 28dcba0..5a361ac 100644 --- a/third_party/tcmalloc/prep_libc.sh +++ b/third_party/tcmalloc/prep_libc.sh @@ -25,7 +25,7 @@ cp "$LIBCMTPDB" "$OUTDIR" LIBCMTSRCPATHVS2005="build\\intel\\mt_obj\\" LIBCMTSRCPATHVS2008="f:\\dd\\vctools\\crt_bld\\SELF_X86\\crt\\src\\build\\INTEL\\mt_obj\\" -OBJFILES="malloc.obj free.obj realloc.obj new.obj delete.obj new2.obj delete2.obj align.obj msize.obj heapinit.obj expand.obj heapchk.obj heapwalk.obj heapmin.obj sbheap.obj calloc.obj recalloc.obj calloc_impl.obj new_mode.obj" +OBJFILES="malloc.obj free.obj realloc.obj new.obj delete.obj new2.obj delete2.obj align.obj msize.obj heapinit.obj expand.obj heapchk.obj heapwalk.obj heapmin.obj sbheap.obj calloc.obj recalloc.obj calloc_impl.obj new_mode.obj newopnt.obj" for FILE in $OBJFILES do |