diff --git a/docs/LinkageChecker.html b/docs/LinkageChecker.html index e215d6a75..fb05126ae 100644 --- a/docs/LinkageChecker.html +++ b/docs/LinkageChecker.html @@ -766,7 +766,6 @@

 
 
-76
 77
 78
 79
@@ -775,10 +774,11 @@ 

82 83 84 -85

+85 +86 -
# File 'linkage_checker.rb', line 76
+      
# File 'linkage_checker.rb', line 77
 
 def broken_library_linkage?(test: false, strict: false)
   raise ArgumentError, "Strict linkage checking requires test mode to be enabled." if strict && !test
@@ -786,7 +786,7 @@ 

issues = [@broken_deps, @broken_dylibs] if test issues += [@unwanted_system_dylibs, @version_conflict_deps] - issues += [@undeclared_deps, @files_missing_rpaths, @executable_path_dylibs] if strict + issues += [@indirect_deps, @undeclared_deps, @files_missing_rpaths, @executable_path_dylibs] if strict end issues.any?(&:present?) end

@@ -962,7 +962,8 @@

70 71 72 -73

+73 +74
# File 'linkage_checker.rb', line 63
@@ -974,6 +975,7 @@ 

display_items("Conflicting libraries", @version_conflict_deps, puts_output:) return unless strict + display_items("Indirect dependencies with linkage", @indirect_deps, puts_output:) display_items("Undeclared dependencies with linkage", @undeclared_deps, puts_output:) display_items("Files with missing rpath", @files_missing_rpaths, puts_output:) display_items "@executable_path references in libraries", @executable_path_dylibs, puts_output: