From 6828849bc445a3ef2b22f1186679078fa3f37ac3 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 25 Nov 2019 13:19:07 +0100 Subject: [PATCH] Remove cfg(not(windows)) from interrupt module This is no longer required and was already removed from the post in commit 992b958414672f6669b87a5b02a91f3a629f18cf. --- src/interrupts.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/interrupts.rs b/src/interrupts.rs index 3beff05e..6b279633 100644 --- a/src/interrupts.rs +++ b/src/interrupts.rs @@ -1,9 +1,3 @@ -// The x86-interrupt calling convention leads to the following LLVM error -// when compiled for a Windows target: "offset is not a multiple of 16". This -// happens for example when running `cargo test` on Windows. To avoid this -// problem we skip compilation of this module on Windows. -#![cfg(not(windows))] - use crate::println; use lazy_static::lazy_static; use x86_64::structures::idt::{InterruptDescriptorTable, InterruptStackFrame};