Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ofrak_patch_maker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased](https://github.com/redballoonsecurity/ofrak/tree/master)

### Changed
- Removed `SUBALIGN(0)` for `.bss` sections

## [4.0.2](https://github.com/redballoonsecurity/ofrak/compare/ofrak-patch-maker-v.4.0.1...ofrak-patch-maker-v.4.0.2)
### Fixed
- Remove option to read or install toolchain.conf from/to "/etc/toolchain.conf" ([#342](https://github.com/redballoonsecurity/ofrak/pull/342))
Expand Down
2 changes: 1 addition & 1 deletion ofrak_patch_maker/ofrak_patch_maker/toolchain/gnu.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def ld_generate_bss_section(
) -> str:
bss_section_name = ".bss"
return (
f" {bss_section_name} : SUBALIGN(0) {{\n"
f" {bss_section_name} : {{\n"
f" *.o({bss_section_name}, {bss_section_name}.*)\n"
f" }} > {memory_region_name}"
)
Expand Down