paoloteti / ti-hercules-bsp

Bare Metal Board Support Package for Texas Instruments Cortex-R4F/R5F TMS570
Other
25 stars 4 forks source link

Move to cargo-xbuild to be able to build 'alloc' crate #1

Closed paoloteti closed 6 years ago

paoloteti commented 6 years ago

The compiler_builtins crate is now explicitly injected. When building the alloc crate via Xargo.toml, a “multiple matching crates for compiler_builtins” error occurs. The reason is that alloc defines its own compiler_builtins dependency. Thus compiler_builtins in compiled twice, once as version 0.0.0 and once as version 0.1.0.

Move to cargo-xbuild to fix the issue