Gabriel Majeri

Results 61 comments of Gabriel Majeri

@NathanMcMillan54 assuming the upstream Rust compiler supports the UEFI calling convention on that architecture, yes. It was also necessary to define a [target `.json` file](https://github.com/rust-osdev/uefi-rs/blob/master/uefi-test-runner/aarch64-unknown-uefi.json) for AArch64 since the compiler...

@orvij the build issue is probably related to #241. The `src/proto/shim/mod.rs` file has to be commented/removed temporarily, until we get it fixed.

@orvij I meant #242, but it's fixed now.

I've been digging around this issue recently, here's what I've discovered so far. I've been trying to use LLDB, since it is the only debugger which can read PDB files...

@nagisa Even if we ignore Emscripten, WebAssembly *does* support [dynamic linking](http://webassembly.org/docs/dynamic-linking/) between modules using `dlopen` / `dlsym` (no `dlclose` though). Should we close this issue and open a new one...

> it looks like the date is being saved as a string without spaces, but the parser seems to be expecting that the date is in quotation marks You're right!...

Perhaps there could be a `try_get_physical` function that returns an `Option`, and the `get_physical` function stays the same, while calling `try_get_physical` under the hood. That way the current API stays...

@mirceachira Are you still working on this issue, or is it available?

I'm first trying to clarify the details of this issue, to make sure I understand what we're implementing :) - The DB server can use Microsoft's official [mssql container image](https://hub.docker.com/_/microsoft-mssql-server)...

The Vulkan GPUInfo site contains a [function](https://github.com/SaschaWillems/vulkan.gpuinfo.org/blob/332ba4a85c4b9b3727c2af6461add050d2c595bb/functions.php#L243) to convert from that device specific format to a more readable one. For example, NVIDIA packs 4 numbers in the u32, Intel on...