]> granicus.if.org Git - clang/commitdiff
Document the weak-linking behavior of the availability attribute
authorDouglas Gregor <dgregor@apple.com>
Sun, 11 Mar 2012 17:21:03 +0000 (17:21 +0000)
committerDouglas Gregor <dgregor@apple.com>
Sun, 11 Mar 2012 17:21:03 +0000 (17:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152543 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LanguageExtensions.html

index bdb04ac1a5aad6c126635b4893c8d0cf61045dca..cbdebe12deadc5b8a60a2e4a47a9282611ae0c16 100644 (file)
@@ -665,6 +665,12 @@ void f(void) __attribute__((availability(macosx,introduced=10.4,deprecated=10.6,
   <dd>Apple's Mac OS X operating system. The minimum deployment target is specified by the <code>-mmacosx-version-min=<i>version</i></code> command-line argument.</dd>
 </dl>
 
+<p>A declaration can be used even when deploying back to a platform
+version prior to when the declaration was introduced. When this
+happens, the declaration is <a
+ href="https://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPFrameworks/Concepts/WeakLinking.html">weakly
+linked</a>, as if the <code>weak_import</code> attribute were added to the declaration. A weakly-linked declaration may or may not be present a run-time, and a program can determine whether the declaration is present by checking whether the address of that declaration is non-NULL.</p>
+
 <!-- ======================================================================= -->
 <h2 id="checking_language_features">Checks for Standard Language Features</h2>
 <!-- ======================================================================= -->