lcc icon indicating copy to clipboard operation
lcc copied to clipboard

The lcc retargetable ANSI C compiler

Results 44 lcc issues
Sort by recently updated
recently updated
newest added

The below program will output `0.000000` for all 6 values. ``` #include typedef struct xy { double x, y; } t_xy; t_xy vec(double x, double y) { return ( (t_xy){x,...

Regards #47. The issue was raised that LCC does not make it obvious that it is a C89 compiler. This occasionally causes problems for developers; for example, the [movfuscator project](https://github.com/xoreaxeaxeax/movfuscator)...

Other compilers allow for switching between C89 and C99 - for example, GCC. To maintain compilation compatibility with other programs, LCC should have a C99 mode as well.

especially catching ambiguous else warnings and missing parentheses in cases where || and && are used. On second thought, I probably should have filtered out removal of rcsid[] declarations. You...

Windows build with gcc works, Linux build should also work, but was not tested yet.

Here is a list of changes to the LCC common code that were required for the Gigatron VCPU backend. The changes have been reorganized as a succession of self-contained commits...

Getting an ASAN SEGV report. To reproduce, I just compiled with asan enabled on x86 machine Linux. To reproduce: ./rcc -target=x86/linux file.c , where file.c the following piece of C...

I can't build lcc under linux (Archlinux and Manjaro), I followed the tutorial: https://htmlpreview.github.io/?https://raw.githubusercontent.com/drh/lcc/master/doc/install.html#rcc And try to use this script : https://groups.google.com/g/comp.compilers.lcc/c/HJ5TeSuP3gY/m/jEiwz-J_dpoJ i still have problems compiling a simple program,...

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...

Thank you for LCC -- it has been a pleasure and an educational experience to work with. The following code fails an assertion when compiled (as `r.c`) with `rcc -Wf-target=symbolic...