From f698922eeea11e4089d746d3529a819897defee4 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 8 Oct 2018 13:34:34 +0200 Subject: Disable Chromium crash handler Chromium's crash handler prevents breakpad from creating crashdumps. - add browser.crash.path: set minidump location - add browser.crash.handler: call this program after crashing --- vendor.cmake | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vendor.cmake') diff --git a/vendor.cmake b/vendor.cmake index 27d9893..183dce9 100644 --- a/vendor.cmake +++ b/vendor.cmake @@ -12,6 +12,7 @@ set(poi_name "smolbote") ## Configuration paths, used in lib/configuration/defaults.h.in if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") set(ConfigPath "smolbote.ini") + set(CrashdumpPath "crashes") set(FilterPath "hosts") set(PluginsPath "plugins") @@ -21,6 +22,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") set(DownloadsPath "~/Downloads") else() set(ConfigPath "~/.config/smolbote/smolbote.cfg") + set(CrashdumpPath "~/.config/smolbote/crash.d") set(FilterPath "~/.config/smolbote/hosts.d") set(PluginsPath "~/.config/smolbote/plugins.d") -- cgit v1.2.1