You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def warn_target: Warning<"violations found for %0">, InGroup<InstallAPIViolation>;
26
28
def err_library_missing_symbol : Error<"declaration has external linkage, but dynamic library doesn't have symbol '%0'">;
27
29
def warn_library_missing_symbol : Warning<"declaration has external linkage, but dynamic library doesn't have symbol '%0'">, InGroup<InstallAPIViolation>;
@@ -43,6 +45,25 @@ def err_dylib_symbol_flags_mismatch : Error<"dynamic library symbol '%0' is "
43
45
"%select{weak defined|thread local}1, but its declaration is not">;
44
46
def err_header_symbol_flags_mismatch : Error<"declaration '%0' is "
45
47
"%select{weak defined|thread local}1, but symbol is not in dynamic library">;
48
+
49
+
// Diagnostics about load commands.
50
+
def err_architecture_mismatch : Error<"architectures do not match: '%0' (provided) vs '%1' (found)">;
51
+
def warn_platform_mismatch : Warning<"platform does not match: '%0' (provided) vs '%1' (found)">, InGroup<InstallAPIViolation>;
52
+
def err_platform_mismatch : Error<"platform does not match: '%0' (provided) vs '%1' (found)">;
53
+
def err_install_name_mismatch : Error<"install_name does not match: '%0' (provided) vs '%1' (found)">;
54
+
def err_current_version_mismatch : Error<"current_version does not match: '%0' (provided) vs '%1' (found)">;
55
+
def err_compatibility_version_mismatch : Error<"compatibility_version does not match: '%0' (provided) vs '%1' (found)">;
56
+
def err_appextension_safe_mismatch : Error<"ApplicationExtensionSafe flag does not match: '%0' (provided) vs '%1' (found)">;
57
+
def err_shared_cache_eligiblity_mismatch : Error<"NotForDyldSharedCache flag does not match: '%0' (provided) vs '%1' (found)">;
58
+
def err_no_twolevel_namespace : Error<"flat namespace libraries are not supported">;
59
+
def err_parent_umbrella_missing: Error<"parent umbrella missing from %0: '%1'">;
60
+
def err_parent_umbrella_mismatch : Error<"parent umbrella does not match: '%0' (provided) vs '%1' (found)">;
61
+
def err_reexported_libraries_missing : Error<"re-exported library missing from %0: '%1'">;
62
+
def err_reexported_libraries_mismatch : Error<"re-exported libraries do not match: '%0' (provided) vs '%1' (found)">;
63
+
def err_allowable_clients_missing : Error<"allowable client missing from %0: '%1'">;
64
+
def err_allowable_clients_mismatch : Error<"allowable clients do not match: '%0' (provided) vs '%1' (found)">;
0 commit comments