-
HI dear author,
It's truly a honor to write a letter to you, I'm building your project nowadays and found the error when building as following, I wonder if there is a chance that you know the …
-
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: ISO/IEC 9899:1999 6.10:
> A pr…
-
```
#include
#define STR(x) #x
int main(void) {
char c1[] = "\u00FD";
char c2[] = STR(\u00FD);
char c3[] = STR("\u00FD");
printf("%s\n", c1); // ý
printf("%s\n", c2); …
-
compiling util-linux failed with variable has incomplete type on union variable
sys-utils/ipcrm.c:79: union semun arg;
^ parse.c: in declaration : variable has in…
-
> 0XE+2 should evaluate to 16, however, both gcc and clang give an error: invalid suffix "+2" on integer constant. Both bugs are known: [gcc](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63337), [clan…
-
#include "test.h"
typedef int MyInt, MyInt2[4];
typedef int;
typedef enum MyEnum MyEnum;
enum MyEnum
{
ENUM_TEST
};
int main() {
ASSERT(1, ({ typedef int t; t x=1; x; }));
ASSER…
-
Hello!
I am trying to build the repository but facing an issue with the libc_mapping.c file
```
FAILED: CMakeFiles/sloader.dir/libc_mapping.cc.o
/usr/bin/c++ -DC10_USE_GLOG=1 -DGLOG_CUSTOM_PREF…
-
```
#if !1u - 1 > 0
#error
#endif
```
leads to:
```
:2: #error
```
-
Configuring `nano` from git://git.savannah.gnu.org/nano.git
`checking whether the preprocessor supports include_next... buggy`
-
Hello! After working on #37 and #82, I felt motivated to try to spend the day resolving other open issues too!
I wanted to say: I know you’re very busy working on other projects, and that chibicc i…