I want to rebuild a package to include debugging symbols, how would I do that? There is no -dbg package available and also no -dbgsym package from the ddebs repository.
Asked
Active
Viewed 3,873 times
10
htorque
- 63,950
- 40
- 194
- 219
2 Answers
13
You can do this in just a few steps:
Get the necessary tools and build dependencies:
sudo apt-get install devscripts fakeroot sudo apt-get build-dep <package>Set the build options:
export DEB_BUILD_OPTIONS="debug nostrip noopt"Build the package:
fakeroot apt-get source -b <package>Install the package:
sudo dpkg -i <package>*.deb
htorque
- 63,950
- 40
- 194
- 219
4
Alternatively install the pkg-create-dbgsym package.
Octavian Helm
- 14,265
- 8
- 56
- 62
sendmoreinfo
- 224
- 4
- 7