Pebble Coding

ソフトウェアエンジニアによるIT技術、数学の備忘録

2019-02-10から1日間の記事一覧

rust をios用にビルドする

ios の target を追加してからビルドします。 $ rustup target add x86_64-apple-ios $ cargo build --target x86_64-apple-ios cargo.toml [lib] name = "blake2rustios" crate-type = ["staticlib"] これでstatic libraryが生成されるようです。 他、細か…