From f2ebdf23dc2c2c1b10de39f65aadb21a8f489938 Mon Sep 17 00:00:00 2001 From: Will Hayworth Date: Mon, 4 Jan 2021 20:13:51 -0800 Subject: [PATCH] linkage.md: update link to FFI section of the Book. --- src/linkage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linkage.md b/src/linkage.md index 4a8ed96a9..2e91099e7 100644 --- a/src/linkage.md +++ b/src/linkage.md @@ -8,7 +8,7 @@ statically and dynamically. This section will explore the various methods to link crates together, and more information about native libraries can be found in the [FFI section of the book][ffi]. -[ffi]: ../book/ffi.html +[ffi]: ../book/ch19-01-unsafe-rust.html#using-extern-functions-to-call-external-code In one session of compilation, the compiler can generate multiple artifacts through the usage of either command line flags or the `crate_type` attribute.