Dear Fedora Xfce,
How do I do this is Fedora 30 and Xfce 4.13?
https://fedoraproject.org/wiki/StackTraces#What_are_debugging_symbols.2C_and...
What are debugging symbols, and why are they important?
When a program is compiled with special switches to generate debugging symbols (the -g compiler switch) extra information is stored in the program file. This information can be used to generate a stack trace that contains much more information, such as the exact line number of the source file where things went wrong. Without this information it is very hard to figure out what went wrong by looking at the stack trace.
I have been asked to do this by https://bugzilla.xfce.org/show_bug.cgi?id=15172#c2
Many thanks, -T
On Sat, Jul 06, 2019 at 02:28:37AM -0700, ToddAndMargo wrote:
How do I do this is Fedora 30 and Xfce 4.13?
I think you can install the debuginfo versions for the packages. Look at https://fedoraproject.org/wiki/StackTraces (this is not about Xfce, but just shows some examples).
On 7/6/19 2:48 AM, Jos Vos wrote:
On Sat, Jul 06, 2019 at 02:28:37AM -0700, ToddAndMargo wrote:
How do I do this is Fedora 30 and Xfce 4.13?
I think you can install the debuginfo versions for the packages. Look at https://fedoraproject.org/wiki/StackTraces (this is not about Xfce, but just shows some examples).
What would the DNF command be to install the debug version of Thunar?
On Sat, Jul 06, 2019 at 03:28:10PM -0700, ToddAndMargo wrote:
What would the DNF command be to install the debug version of Thunar?
The commands are on the wiki page I listed:
dnf debuginfo-install Thunar
or
dnf --enablerepo=fedora-debuginfo --enablerepo=updates-debuginfo \ install Thunar-debuginfo Thunar-debugsource
On 7/6/19 3:59 PM, Jos Vos wrote:
On Sat, Jul 06, 2019 at 03:28:10PM -0700, ToddAndMargo wrote:
What would the DNF command be to install the debug version of Thunar?
The commands are on the wiki page I listed:
dnf debuginfo-install Thunar
or
dnf --enablerepo=fedora-debuginfo --enablerepo=updates-debuginfo \ install Thunar-debuginfo Thunar-debugsource
Thank you!
On 7/6/19 3:59 PM, Jos Vos wrote:
On Sat, Jul 06, 2019 at 03:28:10PM -0700, ToddAndMargo wrote:
What would the DNF command be to install the debug version of Thunar?
The commands are on the wiki page I listed:
dnf debuginfo-install Thunar
or
dnf --enablerepo=fedora-debuginfo --enablerepo=updates-debuginfo \ install Thunar-debuginfo Thunar-debugsource
Thank you. Got gdb working with it nicely.