Procházet zdrojové kódy

Issue a friendlier error message if fde-registry is enabled with no lock impl.

Dan Gohman před 3 roky
rodič
revize
04a14677e4
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      src/unwinder/find_fde/registry.rs

+ 2 - 0
src/unwinder/find_fde/registry.rs

@@ -67,6 +67,8 @@ unsafe fn lock_global_state() -> impl ops::DerefMut<Target = GlobalState> {
         });
         MUTEX.lock()
     }
+    #[cfg(not(any(feature = "libc", feature = "spin")))]
+    compile_error!("Either feature \"libc\" or \"spin\" must be enabled to use \"fde-registry\".");
 }
 
 pub fn get_finder() -> &'static Registry {