Do a 32-bit build of breakpad.

This commit is contained in:
Asher Baker
2013-05-16 16:27:25 +01:00
parent 92a6e52d82
commit daba78e642
+1 -1
View File
@@ -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()