From 55f4b165ad82d0893c5e66cef808af010e1b3fc2 Mon Sep 17 00:00:00 2001 From: "isherman@chromium.org" Date: Thu, 8 Sep 2011 23:35:32 +0000 Subject: 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 --- tools/valgrind/locate_valgrind.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools') 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 -- cgit v1.1