Sean Cross
Sean Cross
I see this Issue is still open, even though there is a comment on initial support being added. Is there still more work to do, and if so how much?
That's bizarre. It's complaining that you're compiling with a different version of rustc. It's saying you're using the 1.64.0 toolchain, and it... really wants the 1.64.0 toolchain. Can you please...
Are you using a custom build of rustc? If you use the official version, it prints out the git hash that built it: ```sh $ $ rustc --version rustc 1.64.0...
It looks like homebrew ships a custom build of Rust, and is therefore incompatible with the precompiled libstd we ship: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/rust.rb Since that's the case, you'll need to build libstd...
In the future, building your own libstd will be slightly easier when using nightly and `-Zbuild-std`, but for now it's a "wontfix" -- we only support official Rust builds.
It is noteworthy, and is a fine description of the higher-level view of how we shove Messages between processes. Note that `Buffer` is an implementation detail, and so many of...
Hi @hasheddan, Thanks for offering to help! An example of how to create a syscall can be found at https://github.com/betrusted-io/xous-core/commit/f165130931bbccfafc3cfa9d0c5b1a109e5b9da6#diff-1e7eb6a2fa6b0945e8c39b8c25b4a174b89e04e6d9bac16e05ccf6aca5edb17f The crux of the issue is that each process needs...
That's exactly it. That can be used to validate connectivity, or to produce neat files like this:   (Note: I'm using DVT1b gerbers, which is why things are sometimes...
I'm not sure how to solve this. Ultimately what happened is that they renamed what the architecture is called -- it used to be `rv32imac`, now it's `rv32imac_zicsr`. And there's...