about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorCristian Oliveira <contato@cristianoliveira.com.br>2016-05-04 00:40:53 -0300
committerCristian Oliveira <contato@cristianoliveira.com.br>2016-05-10 20:16:29 -0300
commit85e02429b2ef07e11a40ebf6df28b37bcba528b2 (patch)
treeb6a3eee91b22c349b715e5400755734cbe05e320 /src
parent3157691f963a86776cb7e6a7842f566032890aba (diff)
downloadrust-85e02429b2ef07e11a40ebf6df28b37bcba528b2.tar.gz
rust-85e02429b2ef07e11a40ebf6df28b37bcba528b2.zip
Add error description for E0455
- Adding name attribute to the sample code - Fix description sentences
Diffstat (limited to 'src')
-rw-r--r--src/librustc_metadata/diagnostics.rs22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/librustc_metadata/diagnostics.rs b/src/librustc_metadata/diagnostics.rs
index 8fa23de9a2d..ae9f500c5de 100644
--- a/src/librustc_metadata/diagnostics.rs
+++ b/src/librustc_metadata/diagnostics.rs
@@ -26,6 +26,27 @@ name. Example:
 ```
 "##,
 
+E0455: r##"
+Linking with `kind=framework` is only supported when targeting OS X,
+as frameworks are specific to that operating system.
+
+Erroneous code example:
+
+```compile_fail"
+#[link(name = "FooCoreServices",  kind = "framework")] extern {}
+// OS used to compile is Linux for example
+```
+
+To solve this error you can use conditional compilation:
+
+```
+#[cfg_attr(target="macos", link(name = "FooCoreServices", kind = "framework"))]
+extern {}
+```
+
+See more: https://doc.rust-lang.org/book/conditional-compilation.html
+"##,
+
 E0458: r##"
 An unknown "kind" was specified for a link attribute. Erroneous code example:
 
@@ -73,7 +94,6 @@ well, and you link to them the same way.
 }
 
 register_diagnostics! {
-    E0455, // native frameworks are only available on OSX targets
     E0456, // plugin `..` is not available for triple `..`
     E0457, // plugin `..` only found in rlib format, but must be available...
     E0514, // metadata version mismatch