Juha Heinanen writes:
in debian rules i have
# force no stripping export DEB_BUILD_OPTIONS:="$(DEB_BUILD_OPTIONS) nostrip" ... ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif
problem solved. i got debug symbols when i added "debug" in debian rules line:
export DEB_BUILD_OPTIONS:="$(DEB_BUILD_OPTIONS) debug nostrip"
-- juha