[筆記][rust] 建立客製化的Library

https://doc.rust-lang.org/rust-by-example/crates/lib.html
https://doc.rust-lang.org/rust-by-example/crates/link.html

1. 建立Library


hello.rs

$> rustc --crate-type=lib hello.rs

會產生libhello.rlib

2. 連結(link)你的Library


main.rs

$> rustc main.rs --extern hello=libhello.rlib
$> ./main

say world
hello world`

留言

熱門文章