From bd931069f5adb81168e7e6186ead0663cc605257 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 10 Mar 2024 19:23:04 -0700 Subject: [PATCH] Revert "Temporarily disable nightly testing due to libLLVM link issue" This reverts commit 7aef1edbba28afe1bb6f9ddc0b5095dcd5135849. --- build.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.rs b/build.rs index a74f73bc38..f14ce219dd 100644 --- a/build.rs +++ b/build.rs @@ -11,9 +11,7 @@ fn main() { // Note: add "/build.rs" to package.include in Cargo.toml if adding any // conditional compilation within the library. - if !unstable() || { - true // FIXME: waiting on https://github.com/rust-lang/rust/pull/121967 - } { + if !unstable() { println!("cargo:rustc-cfg=syn_disable_nightly_tests"); } }