Search

August 09
Learn »
...ldc2 -c hello.d # creates hello.o
    $ gcc hello.o /usr/lib/x86_64-linux...
August 03
Learn »
...flags to fix it:

```sh
/usr/lib/gcc/x86_64-linux-gnu/12/include/bmi2intrin...
July 27
General »
...switching to the pi window:

    raspberrypi:~/test $ gcc test.o
    raspberrypi:~/test $ ./a.out
    a...
July 27
General »
...depends on the optimization options used.

[1] https://gcc.gnu.org/gcc-6/changes.html
July 28
General »
...int*)0;
     *p = 3;
     return 0;
}
```

GCC args: ``-fanalyzer``

GCC Output:

```
<source>: In function 'main...
July 27
General »
...at gcc:

```
void func()
{
    int* p = (int*)0;
    *p = 3;
}
```

```
> gcc -c null.c
> gcc...
July 27
General »
...null-dereference

https://gcc.gnu.org/onlinedocs/gcc-10.1.0/gcc/Static-Analyzer-Options...
July 24
General »
...seen all the C extensions VC and gcc have? It makes for an excessively large...
July 19
Issues »
...com

Hi,
  I am just a friendly GCC developer who noticed that there are some...
July 17
General »
...release" means "gcc -O2 -g0 ..."
In my C and C++ brain: "-debug" means "gcc -Wall...
1 2 3 4 5 6
Next ›   Last »