Results 1127 comments of Brian Smith

I tried using `xargo build --target=x86_64-uwp-windows-msvc` using cargo 1.50.0-nightly (bfca1cd22 2020-11-24) but it failed with: ``` 87 | extern crate alloc; | ^^^^^^^^^^^^^^^^^^^ can't find crate error: aborting due to...

@sumibi-yakitori Thanks for the update. @Darkspirit Thanks for the very useful info. > Servo compiles everything with Rust nightly (currently nightly-2020-07-27), and uses xargo for UWP. Thanks. nightly-2020-07-27 is quite...

In https://github.com/briansmith/ring/issues/1193#issuecomment-786536170, @bdbai shared this log: https://gist.github.com/bdbai/ff93935e702407bc3125a79ae28b4e31 when building for "thumbv7a-uwp-windows-msvc" @bdbai Could you please tell me how to get a working rust toolchain that can build "hello world" for...

> I have tried out ring version 0.17.0-alpha.10 with the thumbv7a UWP target. The first problem is a compiler error [C4146](https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-2-c4146?view=msvc-160) on this line: Please try the newest version of...

> The first problem is a compiler error [C4146](https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-2-c4146?view=msvc-160) on this line: The C code for AAarch64/ARM has been written to only work with GCC/Clang/etc. It probably needs very minor...

> The first problem is a compiler error [C4146](https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-2-c4146?view=msvc-160) on this line: C4146 is a warning, but we treat warnings as errors when you're building from a Git checkout. Please...

Regarding `C4163: '_addcarry_u32': not available as an intrinsic function` and similar warnings about intrinsics: ``` #if defined(_MSC_VER) && !defined(__clang__) #pragma warning(push, 3) #include #pragma warning(pop) ```

Regarding `"/wd4068", // C4068: unknown pragma 'GCC'`, you need to wrap the `#pragma GCC` in `#if`; see other places in the code base.

> ``` > AsmTarget { > oss: &[WINDOWS], > arch: "arm" > ``` You need to change the "aarch64" `AsmTarget`, not the `arm` one. You aren't trying to do anything...

> Actually, I was specifically working on the thumbv7a-uwp-windows-msvc target. Initially the problem was raised in https://github.com/briansmith/ring/issues/1193#issuecomment-786536170, then I was directed here. According to https://github.com/rust-lang/rust/issues/109030, there is no plans for...