You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like this software though I found an issue when parsing a preprocessed file with stddef.h included.
The software seems to have issues with:
typedef struct {
long long __max_align_ll __attribute__((__aligned__(__alignof__(long long))));
long double __max_align_ld __attribute__((__aligned__(__alignof__(long double))));
} max_align_t;
I looked at the code but it seems not like an easy fix.
I did find a workaround though
I run gcc with -D__alignof__(x)=sizeof(x) I know this is not a good fix but I don't use max_align_t so I don't mind it.
Hi,
I like this software though I found an issue when parsing a preprocessed file with stddef.h included.
The software seems to have issues with:
My code:
With source as the preprocessed file with
args = ['gcc','-E','-P' ]
Any solutions to this issue?
Thanks!
The text was updated successfully, but these errors were encountered: