summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authormmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-12 22:40:32 +0000
committermmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-12 22:40:32 +0000
commit60e47874d1b6fa95360a8976e93f11d7868b50ee (patch)
tree8501fefba962fd51981436765c98367fe87c68f9 /build
parentb860cc5a23bc590c708617efe35b6e38b483c3b3 (diff)
downloadchromium_src-60e47874d1b6fa95360a8976e93f11d7868b50ee.zip
chromium_src-60e47874d1b6fa95360a8976e93f11d7868b50ee.tar.gz
chromium_src-60e47874d1b6fa95360a8976e93f11d7868b50ee.tar.bz2
Make breakpad handler compile on Linux.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/SConscript.main3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/SConscript.main b/build/SConscript.main
index 8816938..f97c6d0 100644
--- a/build/SConscript.main
+++ b/build/SConscript.main
@@ -267,12 +267,13 @@ if env['PLATFORM'] == 'win32':
elif env['PLATFORM'] == 'posix':
# For now, linux only loads the components we know work on Linux, by default.
- load = ['base', 'testing', 'third_party']
+ load = ['base', 'testing', 'third_party', 'breakpad']
env.Replace(
# TODO(linux): we should also compile with -Werror, but not yet.
CCFLAGS = ['-m32', '-g'],
LINKFLAGS = ['-m32'],
+ LIBS = ['pthread'],
)
else: