diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-10-12 00:50:39 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-10-12 01:03:27 -0400 |
| commit | 937161f68d39296e00215067c9d51737ac110a3e (patch) | |
| tree | 1831c2de7629847dad814745de8a2f2cac5639b3 /src/build_settings.cpp | |
| parent | de82f117106782fa3c242da8631bc404195ee2b3 (diff) | |
Add `-export-linked-libs-file` build flag.
This build flag writes a list of the libraries that were linked during the build to the specified file.
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 53953600e..29a738c5a 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -575,6 +575,8 @@ struct BuildContext { bool min_link_libs; + String export_linked_libs_path; + bool print_linker_flags; RelocMode reloc_mode; |