diff options
| author | gingerBill <bill@gingerbill.org> | 2024-04-04 16:11:26 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-04-04 16:11:26 +0100 |
| commit | 0e5a482c42f28c58da18213b2b3257304f357476 (patch) | |
| tree | 79eff484c4e848455847b64a88f759ba943ca4cf /src/build_settings.cpp | |
| parent | d248cddf903714cb5b3f3dee300837d1e9fac032 (diff) | |
Default to "smart" linker behaviour; Add `-min-link-libs` to use minimize link libs if wanted
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 1ac9e451f..3b5d33ae3 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -412,7 +412,9 @@ struct BuildContext { bool dynamic_map_calls; - bool obfuscate_source_code_locations; + bool obfuscate_source_code_locations; + + bool min_link_libs; RelocMode reloc_mode; bool disable_red_zone; |