1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-12-08 17:48:06 +00:00

Add building option ENABLE_STRIP to enable the generation of stripped binaries (without debgging information). Set to OFF by default

This commit is contained in:
Carles Fernandez
2020-06-10 17:22:03 +02:00
parent 029651cbe3
commit 836e074f98
8 changed files with 44 additions and 12 deletions

View File

@@ -15,6 +15,10 @@ SPDX-FileCopyrightText: 2011-2020 Carles Fernandez-Prades <carles.fernandez@cttc
- Faster internal handling of `Gnss_Synchro` objects by reducing the amount of
copying via adding `noexcept` move constructor and move assignment operators,
so the move semantics are also used in STL containers.
- Add building option `ENABLE_STRIP` to generate stripped binaries (that is,
without debugging symbols), smaller in size and potentially providing better
performance than non-stripped counterparts. Only for GCC in Release build
mode. Set to `OFF` by default.
### Improvements in Maintainability: