Draft
Conversation
601b31d to
e75301f
Compare
e75301f to
37d16e0
Compare
Scheremo
reviewed
Dec 17, 2024
Contributor
Scheremo
left a comment
There was a problem hiding this comment.
Left some comments, looks reasonable overall.
7f199aa to
96b4a66
Compare
e2c80b4 to
a3b133a
Compare
dc30679 to
1b0184b
Compare
1b0184b to
b3276d4
Compare
- Optional garbage collection for the tests - Create function and data sections - Optionally disassemble static libraries
b3276d4 to
8862ed4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog
This PR tries to reduce the binary size and improve the debugging functionality of the generated code. One aspect is to separate create function and data sections to allow garbage collection during linking, which significantly reduces the binary size.
Bugs
The separate section works on the object and library level, but somehow the linker merges everything into the
.textor.datasections for the final executable and does not keep the individual subsections.Added
Changed
Fixed
ToDo