bug 554021 - enable compiling Breakpad on Linux/ARM by default. r=jimb

--HG--
rename : toolkit/crashreporter/client/crashreporter_linux.cpp => toolkit/crashreporter/client/crashreporter_gtk_common.cpp
extra : rebase_source : a8a747f388c8d7bfe1abb5df1e74dfb61a723303
This commit is contained in:
Ted Mielczarek 2010-03-26 14:23:48 -04:00
Родитель 793021b567
Коммит 96b2368551
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -5874,7 +5874,7 @@ i?86-*-mingw*)
i?86-apple-darwin*|powerpc-apple-darwin*)
MOZ_CRASHREPORTER=1
;;
i?86-*-linux*|x86_64-*-linux*)
i?86-*-linux*|x86_64-*-linux*|arm-*-linux*)
MOZ_CRASHREPORTER=1
;;
*solaris*)

Просмотреть файл

@ -66,6 +66,13 @@ HOST_CPPSRCS = \
stabs_reader.cc \
$(NULL)
ifdef MOZ_PLATFORM_MAEMO
# The GCC in scratchbox crashes writing DWARF debug info for language.cc.
# Since we don't really need debug symbols for the host tools anyway,
# just get rid of debug options.
HOST_CXXFLAGS = $(patsubst -g%,,$(CXXFLAGS))
endif
# need static lib
FORCE_STATIC_LIB = 1
FORCE_USE_PIC = 1