Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Merge #103
Browse files Browse the repository at this point in the history
103: Remove superfluous parentheses from link.x r=almindor a=jannic

Fixes #102

Co-authored-by: Jan Niehusmann <[email protected]>
  • Loading branch information
bors[bot] and jannic authored Sep 8, 2022
2 parents 99303dd + bf0231d commit 28806e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Changed

- Remove superfluous parentheses from link.x, which caused linker errors with nightly.

## [v0.9.0] - 2022-07-01

### Added
Expand Down
4 changes: 2 additions & 2 deletions link.x
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ SECTIONS
KEEP(*(.init));
KEEP(*(.init.rust));
. = ALIGN(4);
(*(.trap));
(*(.trap.rust));
*(.trap);
*(.trap.rust);

*(.text .text.*);
} > REGION_TEXT
Expand Down

0 comments on commit 28806e0

Please sign in to comment.