From 48fe247a035aea6684ccde7c51fa08a955f86132 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Fri, 19 Mar 2021 10:50:30 +0100 Subject: [PATCH] add changelog --- changelog/unreleased/build-all-targets.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 changelog/unreleased/build-all-targets.md diff --git a/changelog/unreleased/build-all-targets.md b/changelog/unreleased/build-all-targets.md new file mode 100644 index 0000000000..ca9f42021d --- /dev/null +++ b/changelog/unreleased/build-all-targets.md @@ -0,0 +1,8 @@ +Enhancement: Add new build targets + +Make build target `build` used to build a binary twice, the second occurrence having symbols for debugging. We split this step in two and added `build-all` and `build-debug` targets. + +- `build-all` now behaves as the previous `build` target, it will generate 2 binaries, one for debug. +- `build-debug` will build a single binary for debugging. + +https://github.com/owncloud/ocis/pull/1824