소스 검색

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

Dan Gohman 3 년 전
부모
커밋
04a14677e4
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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 {