diff options
author | Wolfgang Müller | 2022-04-28 17:43:58 +0200 |
---|---|---|
committer | Wolfgang Müller | 2022-04-28 17:47:56 +0200 |
commit | 5d35da4dc338ac2e1438c15b48b0b39f59641cd1 (patch) | |
tree | 4039ce64d968fc4772ae57a8372db3af09686e91 | |
parent | 6dfb45918938ce661f27c88f943bbbea95ffc179 (diff) | |
download | portage-roles-5d35da4dc338ac2e1438c15b48b0b39f59641cd1.tar.gz |
group-base: Remove flag that forces DWARF 4
With debugedit 5.0 now in the tree [1], this can go.
[1] https://bugs.gentoo.org/768444
Diffstat (limited to '')
-rw-r--r-- | group-base/env/debug | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/group-base/env/debug b/group-base/env/debug index ab73427..6e6c795 100644 --- a/group-base/env/debug +++ b/group-base/env/debug @@ -1,4 +1,3 @@ -# remove -gdwarf-4 once debugedit supports DWARF 5 -CFLAGS="${CFLAGS} -ggdb -gdwarf-4" -CXXFLAGS="${CXXFLAGS} -ggdb -gdwarf-4" +CFLAGS="${CFLAGS} -ggdb" +CXXFLAGS="${CXXFLAGS} -ggdb" FEATURES="${FEATURES} -nostrip compressdebug installsources splitdebug" |