diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 23:35:32 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 23:35:32 +0000 |
commit | 55f4b165ad82d0893c5e66cef808af010e1b3fc2 (patch) | |
tree | b612bf29e677ee6137139cd3619b58147156bce8 | |
parent | 25e5090ac74771b71167926e4aba113b1939dd5f (diff) | |
download | chromium_src-55f4b165ad82d0893c5e66cef808af010e1b3fc2.zip chromium_src-55f4b165ad82d0893c5e66cef808af010e1b3fc2.tar.gz chromium_src-55f4b165ad82d0893c5e66cef808af010e1b3fc2.tar.bz2 |
Add Valgrind support for 64-bit Mac 10.6
I'm not 100% sure running the same valgrind binaries for 32- and 64-bit installs is safe, but it seems to work.
BUG=95875
TEST=run valgrind scripts; have them succeed
Review URL: http://codereview.chromium.org/7860003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100297 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | tools/valgrind/locate_valgrind.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/valgrind/locate_valgrind.sh b/tools/valgrind/locate_valgrind.sh index ce19fb8..25e293b 100755 --- a/tools/valgrind/locate_valgrind.sh +++ b/tools/valgrind/locate_valgrind.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -29,6 +29,9 @@ then *Darwin*10.[0-9].[0-9]*i386*) PLATFORM="mac_10.6" ;; + *Darwin*10.[0-9].[0-9]*x86_64*) + PLATFORM="mac_10.6" + ;; *) echo "Unknown platform:" >&2 uname -a >&2 |