diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-03-01 16:20:01 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-03-06 11:02:26 +0100 |
commit | b1a95dd29f236a6e2e6aef1b15de0c17a2f14143 (patch) | |
tree | 677499a3f57f29c734a75f4d5a8e817ba81a8d4b | |
parent | 50005b099a6f2e728dc7ce9379a7d7b022a21366 (diff) | |
download | justbuild-static-binaries-b1a95dd29f236a6e2e6aef1b15de0c17a2f14143.tar.gz |
Add support for debug builds
... although not reproducible, it might be helpful to have
the ability to build static binaries with debug symbols.
-rw-r--r-- | TARGETS | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2,13 +2,15 @@ , "just": { "type": "export" , "target": "config" - , "flexible_config": ["OS", "ARCH", "TARGET_ARCH", "TOOLCHAIN_CONFIG", "ENV"] + , "flexible_config": + ["OS", "ARCH", "TARGET_ARCH", "TOOLCHAIN_CONFIG", "DEBUG", "ENV"] , "fixed_config": {"CONFIG_TARGET": ["@", "just", "", "installed just"]} } , "just-mr": { "type": "export" , "target": "config" - , "flexible_config": ["OS", "ARCH", "TARGET_ARCH", "TOOLCHAIN_CONFIG", "ENV"] + , "flexible_config": + ["OS", "ARCH", "TARGET_ARCH", "TOOLCHAIN_CONFIG", "DEBUG", "ENV"] , "fixed_config": {"CONFIG_TARGET": ["@", "just", "", "installed just-mr"]} } , "config": |