diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 21:13:42 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 21:13:42 +0000 |
commit | 95fe390b98883c2ae8f896914615d24e87841ba0 (patch) | |
tree | 08e9bddd7992db38c15e6ed82d8232d23422baf8 /base/debug_util_posix.cc | |
parent | fee00934a491edf64b615cc5d34a01de17736fec (diff) | |
download | chromium_src-95fe390b98883c2ae8f896914615d24e87841ba0.zip chromium_src-95fe390b98883c2ae8f896914615d24e87841ba0.tar.gz chromium_src-95fe390b98883c2ae8f896914615d24e87841ba0.tar.bz2 |
Lands http://codereview.chromium.org/99349 for Ryan.
Comments from Ryan:
Some small changes to get chromium building on ARM. I tested these using the
standard Linux tool chain and crosstools-ng.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/99365
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15241 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug_util_posix.cc')
-rw-r--r-- | base/debug_util_posix.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/debug_util_posix.cc b/base/debug_util_posix.cc index 34cc45c..a6d5199 100644 --- a/base/debug_util_posix.cc +++ b/base/debug_util_posix.cc @@ -108,7 +108,9 @@ bool DebugUtil::BeingDebugged() { // static void DebugUtil::BreakDebugger() { +#if !defined(ARCH_CPU_ARM_FAMILY) asm ("int3"); +#endif } StackTrace::StackTrace() { |