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

Commit 28806e0

Browse files
bors[bot]jannic
andauthored
Merge #103
103: Remove superfluous parentheses from link.x r=almindor a=jannic Fixes #102 Co-authored-by: Jan Niehusmann <[email protected]>
2 parents 99303dd + bf0231d commit 28806e0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Remove superfluous parentheses from link.x, which caused linker errors with nightly.
13+
1014
## [v0.9.0] - 2022-07-01
1115

1216
### Added

link.x

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ SECTIONS
5555
KEEP(*(.init));
5656
KEEP(*(.init.rust));
5757
. = ALIGN(4);
58-
(*(.trap));
59-
(*(.trap.rust));
58+
*(.trap);
59+
*(.trap.rust);
6060

6161
*(.text .text.*);
6262
} > REGION_TEXT

0 commit comments

Comments
 (0)