rust-osdev / bootloader

An experimental pure-Rust x86 bootloader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

build-std with bindeps

kimtahen opened this issue · comments

0.11.x version of bootloader crate uses artifacts, but when I tried to build a kernel with build-std, it panics. It seems like the same issue with rust-lang/cargo#10444 (comment).
Is this issue resovled? Or, is there any other ways to handle this?

I guess you could work around this cargo issue by running a manual cargo build -Zbuild-std command for your kernel from your top-level build script (instead of using an artifact dependency for your kernel).