From c758d15e0ab1f1d6b2bd7c6a3836af1725ecea10 Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Thu, 8 Sep 2022 10:34:04 +0000 Subject: [PATCH 1/2] Remove superfluous parentheses from link.x Fixes #102 --- link.x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/link.x b/link.x index e3b5ff4..1f52024 100644 --- a/link.x +++ b/link.x @@ -55,8 +55,8 @@ SECTIONS KEEP(*(.init)); KEEP(*(.init.rust)); . = ALIGN(4); - (*(.trap)); - (*(.trap.rust)); + *(.trap); + *(.trap.rust); *(.text .text.*); } > REGION_TEXT From bf0231d7b2fd67129b7162edb6fd1fe841e584d1 Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Thu, 8 Sep 2022 17:11:07 +0000 Subject: [PATCH 2/2] Add CHANGELOG entry --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3378cf7..b233714 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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