Máté Kukri
Máté Kukri
The following code: ```c #define x x#define y z y ``` Should expand to: ```c #define y z y ``` But instead chibicc expands it to: ```c z ``` Rationale:...
Hello, chibicc does not evaluate the ## operator in the replacement list of an object-like macros. The C standard says, to quote ISO/IEC 9899:1999: > For both object-like and function-like...
Support for the MCP2210 USB to SPI bridge by Microchip. Datasheet: [link](http://ww1.microchip.com/downloads/en/DeviceDoc/22288A.pdf) I do not really know how to format this correctly for flashrom, but it is based on a...
I discovered this while porting coreboot to a Bay Trail board. It's a GBYT4-4L by Shenzhen Bostrontium Teng Technology, the board has a Celeron J1800 on-board. I tested the board...
By the OpenCL documentation: > All OpenCL API calls are thread-safe except clSetKernelArg. clSetKernelArg is safe to call from any host thread, and is safe to call re-entrantly so long...
As discussed on #29726, this is part 1 of the changes for the UKI multi DTB effort.
As discussed on https://github.com/systemd/systemd/pull/29726, this is part 2 of the changes for the UKI multi DTB effort.
This pull request is working towards supporting multiple DTB sections in both UKIs and UKI addons. The goal of this is to allow selecting a DTB appropriate for the booted...
### Describe the bug Cython/Includes/posix/types.pxd hard-codes time_t as long, which isn't correct on 32-bit Linux using 64-bit time_t. This results in an incorrect struct stat layout specified by Cython/Includes/posix/stat.pxd, leading...
This pull requests adds definitions for examining device path components. These were derived from edk2 (mainly the comments), so I added the edk2 license on top of the file. I...