Replies: 5 comments 6 replies
This comment has been hidden.
This comment has been hidden.
-
I'm unable to reproduce this, could you share the |
Beta Was this translation helpful? Give feedback.
This comment has been hidden.
This comment has been hidden.
-
The docs are being updated in #5122
I also discovered a bug in Thanks for reporting this to us! |
Beta Was this translation helpful? Give feedback.
-
@Manishearth Thank you so much. The compilation was successful! |
Beta Was this translation helpful? Give feedback.
-
I'm following Using ICU4X from C++ to compile a c++ static library. We will be building it on a no_std platform, more specifically
thumbv7em-none-eabi
, so I used the command listed under Embedded Platforms to compile. However, I'm getting errors likeif the target is not specified (I guess it's using default
stable-x86_64-unknown-linux-gnu
) and much more errors if the target is set tothumbv7em-none-eabi
.It seems like the errors come from the dependency "serde", which is dependent on "std". So I tried specifying
serde = { version = "1.0", default-features = false }
inCargo.toml
, but that doesn't help. How would you suggest to compile ICU4X on a no_std platform?Beta Was this translation helpful? Give feedback.
All reactions