@@ -654,7 +654,24 @@ impl<'a> CrateLocator<'a> {
654
654
continue ;
655
655
}
656
656
}
657
- * slot = Some ( ( hash, metadata, lib. clone ( ) ) ) ;
657
+
658
+ // We error eagerly here. If we're locating a rlib, then in theory the full metadata
659
+ // could still be in a (later resolved) dylib. In practice, if the rlib and dylib
660
+ // were produced in a way where one has full metadata and the other hasn't, it would
661
+ // mean that they were compiled using different compiler flags and probably also have
662
+ // a different SVH value.
663
+ if metadata. get_header ( ) . is_stub {
664
+ // `is_stub` should never be true for .rmeta files.
665
+ assert_ne ! ( flavor, CrateFlavor :: Rmeta ) ;
666
+
667
+ // Because rmeta files are resolved before rlib/dylib files, if this is a stub and
668
+ // we haven't found a slot already, it means that the full metadata is missing.
669
+ if slot. is_none ( ) {
670
+ return Err ( CrateError :: FullMetadataNotFound ( self . crate_name , flavor) ) ;
671
+ }
672
+ } else {
673
+ * slot = Some ( ( hash, metadata, lib. clone ( ) ) ) ;
674
+ }
658
675
ret = Some ( ( lib, kind) ) ;
659
676
}
660
677
@@ -916,6 +933,7 @@ pub(crate) enum CrateError {
916
933
ExternLocationNotExist ( Symbol , PathBuf ) ,
917
934
ExternLocationNotFile ( Symbol , PathBuf ) ,
918
935
MultipleCandidates ( Symbol , CrateFlavor , Vec < PathBuf > ) ,
936
+ FullMetadataNotFound ( Symbol , CrateFlavor ) ,
919
937
SymbolConflictsCurrent ( Symbol ) ,
920
938
StableCrateIdCollision ( Symbol , Symbol ) ,
921
939
DlOpen ( String , String ) ,
@@ -966,6 +984,9 @@ impl CrateError {
966
984
CrateError :: MultipleCandidates ( crate_name, flavor, candidates) => {
967
985
dcx. emit_err ( errors:: MultipleCandidates { span, crate_name, flavor, candidates } ) ;
968
986
}
987
+ CrateError :: FullMetadataNotFound ( crate_name, flavor) => {
988
+ dcx. emit_err ( errors:: FullMetadataNotFound { span, crate_name, flavor } ) ;
989
+ }
969
990
CrateError :: SymbolConflictsCurrent ( root_name) => {
970
991
dcx. emit_err ( errors:: SymbolConflictsCurrent { span, crate_name : root_name } ) ;
971
992
}
0 commit comments