/
githubmirror
/
rpm
Обзор
Документация
Войти
/
githubmirror
/
rpm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/data/macros.debug
37 строк
1 KB
Panu Matilainen
Add proper logic for debuginfo enablement
13 май 2024, 11:38
13 май 2024, 11:38
8535694
Код
Авторство
О чём код?
# macros to include to generate debuginfo # Note don't define/enable a feature here if it is already the default in # macros.in. Otherwise it cannot simply be --undefined on the command line # in the tests (it needs to be undefined multiple times then). %_enable_debug_packages 1 %_include_minidebuginfo 1 %_include_gdb_index 1 # Expanded at end of %install scriptlet %__arch_install_post %{nil} %__os_install_post \ %{_rpmconfigdir}/brp-compress \ %{!?__debug_package:\ %{_rpmconfigdir}/brp-strip %{__strip} \ %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} \ } \ %{_rpmconfigdir}/brp-strip-static-archive %{__strip} \ %{nil} # Should missing buildids terminate a build? %_missing_build_ids_terminate_build 1 # Number of debugging information entries (DIEs) above which # dwz will stop considering file for multifile optimizations # and enter a low memory mode, in which it will optimize # in about half the memory needed otherwise. %_dwz_low_mem_die_limit 10000000 # Number of DIEs above which dwz will stop processing # a file altogether. %_dwz_max_die_limit 50000000 %_find_debuginfo_dwz_opts --run-dwz\\\ --dwz-low-mem-die-limit %{_dwz_low_mem_die_limit}\\\ --dwz-max-die-limit %{_dwz_max_die_limit}