书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 1523 个相关结果.
  • 编译、生成内核镜像

    编译、生成内核镜像 使用 riscv64 目标编译项目 为项目设置默认目标三元组 安装 binutils 工具集 查看生成的可执行文件 生成内核镜像 编译、生成内核镜像 代码 使用 riscv64 目标编译项目 现在我们尝试用 riscv64 的目标来编译这个项目: $ cargo build -- target riscv6...
  • crate

    crate crate crate_type 属性可以告知编译器 crate 是一个二进制的可执行文件还是一个 库(甚至是哪种类型的库),crate_name 属性可以设定 crate 的名称。 不过,一定要注意在使用 cargo 时,这两种类型时都没有 作用。由于大多数 Rust 工程都使用 cargo,这意味着 crate_type ...
  • Quickstart

    207 2023-12-03 《Rocket v0.3 Guide》
    Quickstart Running Examples Quickstart Before you can start writing a Rocket application, you’ll need a nightly version of Rust installed. We recommend you use rustup to inst...
  • Development tools

    324 2021-05-19 《Deno v1.10.2 Manual》
    Testing and Tools Tests Lint and format Continuous Benchmarks Testing and Tools Tests Test deno : # Run the whole suite:cargo test # Only test cli/tests/unit/:cargo tes...
  • 接受命令行参数

    接受命令行参数 读取参数值 args 函数和无效的 Unicode 将参数值保存进变量 接受命令行参数 ch12-01-accepting-command-line-arguments.md commit c084bdd9ee328e7e774df19882ccc139532e53d8 一如既往使用 cargo new 新建一个...
  • 接受命令行参数

    接受命令行参数 读取参数值 args 函数和无效的 Unicode 将参数值保存进变量 接受命令行参数 ch12-01-accepting-command-line-arguments.md commit 97e60b3cb623d4a5b85419212b085ade8a11cbe1 一如之前使用 cargo new 新建一个项目...
  • Build a sample app

    Build a sample app Run your app Troubleshooting Build a sample app First, create a new cargo project: cargo new yew - app Open the newly created directory. First, let’s...