From daba78e642db2fba70c510d2bcfc04609f43601b Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Thu, 16 May 2013 16:27:25 +0100 Subject: [PATCH] Do a 32-bit build of breakpad. --- extension/AMBuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/AMBuilder b/extension/AMBuilder index ec22f53..35f2255 100644 --- a/extension/AMBuilder +++ b/extension/AMBuilder @@ -10,7 +10,7 @@ def BuildBreakpad(): return if osutil.FileExists(os.path.join(AMBuild.outputFolder, 'google-breakpad', 'src', 'client', 'linux', 'libbreakpad_client.a')): return - breakpad.AddCommand(ShellCommand(os.path.join(AMBuild.sourceFolder, 'google-breakpad', 'configure'))) + breakpad.AddCommand(ShellCommand('CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ' + os.path.join(AMBuild.sourceFolder, 'google-breakpad', 'configure'))) breakpad.AddCommand(ShellCommand('make src/client/linux/libbreakpad_client.a')) BuildBreakpad()