mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-24 20:32:58 +00:00
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:
28
src/tools/linux/dump_syms/Makefile
Normal file
28
src/tools/linux/dump_syms/Makefile
Normal 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)
|
||||
Reference in New Issue
Block a user