Per Larsen

Results 43 comments of Per Larsen

One potential solution would be to expose [getIntWidth](https://clang.llvm.org/doxygen/classclang_1_1TargetInfo.html#a619c1f7f0037b2339542171b3fdc9168) and equivalents for other types (`short`, `long`, etc.) in the `clang-sys` crate, pull that into `bindgen`, and insert `__INT_MAX__` etc. into `BindgenContext::parsed_macros`...

This bug is still present in 1.6.3. Any update on this would be greatly appreciated.

Looking at issue #124 and poking at the code, this is my understanding of the problem: 1. Some arguments need escaping no matter their nesting level, e.g., directory names with...

Can you try building the c2rust version from this repo instead of the one on crates.io to check if the issue still happens on the master branch? It looks like...

Hi @SheldonHH Thanks for your report, it would have been helpful if you'd directly included the build errors. This is what I see: ``` error[E0557]: feature has been removed -->...

Hi @brechtvandesijpe, the issue is missing support for `_Generic` types as mentioned here https://github.com/immunant/c2rust/issues/982#issuecomment-1630869003 @ahomescu do you remember how/whether we worked around this issue?

I think we need to discuss what a good solution would look like. For instance, should this be controlled by a CLI flag. How should prefixes be chosen/generated. IIRC, one...

Should investigate whether the "StorageLive" MIR node provides the necessary information for dynamic analysis. Do we get an event signifying the end of the lifetime of the stack allocation. If...

Hi @theoparis, I doubt we'll be able to land a PR that upgrades all crate versions. Some crates depend on a newer rustc toolchain which is difficult and risky to...

Fixed in https://github.com/immunant/c2rust-testsuite/pull/14