diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-10-10 00:25:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-10 00:25:39 +0300 |
commit | 860adde457c64f4b0e432dd8c90d5b320f3f479f (patch) | |
tree | 75fd78c9b169a15b2bd89529e6961f0cd91cf3f9 /CHANGELOG.md | |
parent | 67db9b228d3b6c63484ca4b8fcae577afc0ee22a (diff) | |
download | alacritty-860adde457c64f4b0e432dd8c90d5b320f3f479f.tar.gz alacritty-860adde457c64f4b0e432dd8c90d5b320f3f479f.zip |
Fix feature checking in cross builds
Checking for target os in build.rs doesn't work, since build.rs
is running for host, so checking should be done in src. Thus moving
'compile_error!' check from build.rs to main.rs.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d2a6889..5aa9806d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,6 +64,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Touchpad scrolling scrolled less than it should on macOS/Wayland on scaled outputs - Incorrect modifiers at startup on X11 - `Add` and `Subtract` keys are now named `NumpadAdd` and `NumpadSubtract` respectively +- Feature checking when cross compiling between different operating systems ## 0.5.0 |