Logo
Explore Help
Sign In
linuxmsm/debugcc
0
0
Fork 0
You've already forked debugcc
mirror of https://github.com/linux-msm/debugcc.git synced 2026-02-25 13:12:32 -08:00
Code Issues Packages Projects Releases Wiki Activity
Files
master
debugcc/meson_options.txt

6 lines
144 B
Meson
Raw Permalink Normal View History

meson: add option to build debugcc as a dynamically linked binary debugcc is currently linked statically using -static and -static-libgcc. This can cause issues for distributions that prefer dynamically linked binaries (e.g. larger binaries and duplicated runtime code which could otherwise be shared). Add a Meson boolean option `dynamic-linking` which when enabled removes the explicit static link flags so that debugcc is built as a dynamically linked binary using the default toolchain behaviour. The default for this option is false so that existing builds continue to get a statically linked binary unless they opt in to dynamic linking. Signed-off-by: Christopher Obbard <christopher.obbard@linaro.org>
2025-11-24 22:28:12 +00:00
option('dynamic-linking',
type: 'boolean',
value: false,
description: 'Build debugcc as a dynamically linked binary instead of static',
)
Reference in New Issue Copy Permalink
Powered by Gitea Page: 53ms Template: 3ms
English
English
Licenses API