This package doesn't use gbs defined GCC and CC flags.
In that case DWARF-5 is used by default and is not supported
by our rpmbuild. This creates errors when generating debug
packages and results in empty debugsource package.
Change-Id: I49a9cb9750058cae36df7b8ad6cb6958d4c007a3
############################# compiler flags ##################################
-SET(CMAKE_C_FLAGS "-g")
-SET(CMAKE_CXX_FLAGS "-g -std=c++17")
+SET(CMAKE_C_FLAGS "-g -gdwarf-4")
+SET(CMAKE_CXX_FLAGS "-g -std=c++17 -gdwarf-4")
SET(CMAKE_C_FLAGS_PROFILING "-O0 -pg")
SET(CMAKE_CXX_FLAGS_PROFILING "-O0 -pg")
SET(CMAKE_C_FLAGS_DEBUG "-O0 -ggdb")