Hello Rust 示例

以下示例展示了如何构造一个依赖于 Rust 库的 Rust 二进制文件。

Rust 模块目前被限定在 build/soong/rust/config/allowed_list.go 中定义的特定目录内。以下 helloWorld 模块使用 external/rust 目录来避免修改此列表。

在 AOSP 源代码根目录中

mkdir -p external/rust/hello_rust/src/
mkdir -p external/rust/libsimple_printer/src/

使用以下内容创建 external/rust/hello_rust/src/hello_rust.rs

use simple_printer;
fn main() {
 simple_printer::print_hello_rust();
}

创建包含以下内容的 external/rust/libsimple_printer/src/lib.rs 文件:

pub fn print_hello_rust() {
  println!("Hello Rust!");
}

创建一个包含以下内容的 external/rust/hello_rust/Android.bp 文件:

rust_binary {
    name: "hello_rust",

    // srcs must contain a single source file, the entry point source.
    srcs: ["src/hello_rust.rs"],

    // rustlibs are Rust library dependencies. The type, rlib (static) or dylib
    // (dynamic), are chosen automatically based on module type and target
    // to avoid linkage issues.
    rustlibs: ["libsimple_printer"],

    // define any additional compilation flags
    flags: [
        "-C debug-assertions=yes",
    ],

    // cc libraries can be linked in to rust binaries and libraries through the
    // shared_libs and static_libs properties. These are not needed for this
    // simple example, so they are not included.
}

创建一个包含以下内容的 external/rust/libsimple_printer/Android.bp 文件:

// rust_library provides dylib and rlib variants.
rust_library {
    //name or stem properties must be of the form lib<crate_name><any_suffix>
    name: "libsimple_printer",

    //crate_name must match the name used in source (e.g. extern crate <name>)
    crate_name: "simple_printer",

    //srcs must contain a single source file, the entry point source
    srcs: ["src/lib.rs"],
}

最后,构建 hello_rust 模块:

source build/envsetup.sh
lunch aosp_arm64-eng
m hello_rust