Archit Gupta

Results 22 comments of Archit Gupta

Hi, are the librt headers available in your buildroot? It is odd that rt is being pulled in when only building shadow; I'll look into this.

Hey, I'm not able to reproduce this. Do you have more information about the sysroot and host system? I see you are using GGC 8, have you tried a newer...

Hey, closing this; feel free to reopen in you have more info.

I am currently minimizing the testcase to evaluate whether it is a compiler bug.

Hi, this feature request is under consideration

Hi, could you explain the use case a bit more? If I understand correctly, the intent is to get the device to go into sleep between receiving MQTT messages?

For either sleep, you should not need to suspend any tasks. No tasks will run while the device is sleeping.

I've minimized the test case to this: ```c typedef struct xLIST_ITEM { struct xLIST_ITEM * pxNext; struct xLIST * pvContainer; } ListItem_t; typedef struct xMINI_LIST_ITEM { struct xLIST_ITEM * pxNext;...

https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Warray-bounds Looking at above gcc docs explains why it only happens at those optimization levels; the warning depends on `-ftree-vrp` which is not on all optimization levels. I am able...