diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-02 19:15:47 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-04 08:41:56 +0000 |
commit | 2d1fc99275315bd6f45c1b73540f2b55e94bef9f (patch) | |
tree | 4a8e5c858a086efad4c6c3723f1ac5a5125395b4 /desktop/Module_desktop.mk | |
parent | e95be04a73e977022455335d7cbf56804638f761 (diff) |
extract the minidump uploader code into a static lib
The plan for the near future is to still ship the executable but replace
the interal use if possible with using the static library.
At some point when it is not needed for debugging anymore and everything
works correctly we should only build the uploader executable in dev
configurations. The huge disadvantage of the interal solution is that it
is nearly impossible for a user to upload a crash report if LibO starts
working correctly. Also LibO overwrites the file with the information
after the upload whereas the executable does not.
Change-Id: Ib9854946be3a34e580964c18e1a9c0cce16221d1
Reviewed-on: https://gerrit.libreoffice.org/25862
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'desktop/Module_desktop.mk')
-rw-r--r-- | desktop/Module_desktop.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/Module_desktop.mk b/desktop/Module_desktop.mk index 430d48fb45ab..22d3647c1386 100644 --- a/desktop/Module_desktop.mk +++ b/desktop/Module_desktop.mk @@ -17,7 +17,9 @@ $(eval $(call gb_Module_add_targets,desktop,\ Library_deploymentmisc \ Library_offacc \ Library_sofficeapp \ - $(if $(ENABLE_BREAKPAD),Library_crashreport) \ + $(if $(ENABLE_BREAKPAD), \ + Library_crashreport \ + StaticLibrary_minidump) \ $(if $(ENABLE_HEADLESS),,Library_spl) \ Package_branding \ $(if $(CUSTOM_BRAND_DIR),Package_branding_custom) \ |