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

Remove superfluous parentheses from link.x #103

Merged
merged 2 commits into from
Sep 8, 2022
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
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