Add Linux exception handler.

Add Linux stab symbol dumper.
Add minidump & symbol uploader for Linux.



git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@126 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
luly81
2007-03-12 01:53:18 +00:00
parent 1f3d2571d1
commit bcd46f0079
23 changed files with 4032 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
CPP=g++
CC=gcc
CPPFLAGS=-gstabs -I../../.. -Wall -D_REENTRANT
LDFLAGS=-lssl
.PHONY:all clean
BIN=dump_syms
all:$(BIN)
DUMP_OBJ=dump_symbols.o guid_creator.o dump_syms.o file_id.o
dump_syms:$(DUMP_OBJ)
$(CPP) $(CPPFLAGS) $(LDFLAGS) -o $@ $^
dump_symbols.o:../../../common/linux/dump_symbols.cc
$(CPP) $(CPPFLAGS) -c $^
guid_creator.o:../../../common/linux/guid_creator.cc
$(CPP) $(CPPFLAGS) -c $^
file_id.o:../../../common/linux/file_id.cc
$(CPP) $(CPPFLAGS) -c $^
clean:
rm -f $(BIN) $(DUMP_OBJ)