TwoClocks

Results 27 comments of TwoClocks

`valid` is not mentioned anywhere in the documentation, and not much turns up on a google search either. Where can I find an explanation of the meaning, and possibly an...

FYI: n-bits isn't the only common format. Financial systems use the number of base10 digits. For example Nasdaq (and many others) use an implied "6.4" format in 32-bits for prices....

> It seems more like a spec for data exchange where the data is being imported or exported as text representations of the numeric data, rather than describing how the...

So for GCC/Clang it looks like if the attribute is before the typedef, it's applied to the type, if it's after then it's a requested attribute to the struct, and...

Some more info on this. It looks like `I2` has `I1` attributes as well as it's own. I think this is the main issue. ``` typedef: 'attributed(int)' attr: aligned alignment:...

> Out of curiosity, how did you find out that this was due to snap's confinement capabilities? I ran `strace` and looked for errors. Snap installs in a char_root'd like...

I started working on an arocc version of translate-c. It doesn't look too bad; just a fair bit of time. I have a feeling that `translate-c/ast.zig` is incomplete compared to...

Here is my feeble branch: https://github.com/TwoClocks/zig/tree/aro-translate-c It *should* compile w/ a recent `master` version of zig. I added aro as a module to zig. The path is relative but hard-coded...

@MarcoPolo I'm not sure if you've decided to take this on. I realized it doesn't need to be in the zig compiler at all. It can be a stand-alone app....

> Unless you're interested in continuing your project I'll start working on getting Aro translate-c to a contributor friendly state. Please. I'll port whatever I've added recently.