Martin Liška

Results 335 comments of Martin Liška
trafficstars

All right, so info from the issue template would be: ``` uname -a Linux marxinbox.suse.cz 5.16.2-1-default #1 SMP PREEMPT Mon Jan 24 18:27:48 UTC 2022 (0d710a8) x86_64 x86_64 x86_64 GNU/Linux...

So what's weird is that w/o the `--verbose` argument it works (until the end where it's stuck). Plus I think GCC drive uses `execve` with a full path if I...

And yes, `cc1plus` is really not on `PATH`: ``` $ which cc1plus which: no cc1plus in (/home/marxin/bin/valgrind/bin:/home/marxin/.local/bin:/home/marxin/bin:/usr/local/bin:/usr/bin:/bin:/home/marxin/Programming/gcc-util/boilerplate:/home/marxin/Programming/gcc-util/dumps:/home/marxin/Programming/script-misc) ```

No, I have a standard openSUSE Tumbleweed without any extra libC libraries. ``` $ ldd `which bear` linux-vdso.so.1 (0x00007ffff7fc6000) libspdlog.so.1 => /lib64/libspdlog.so.1 (0x00007ffff7f04000) libfmt.so.8 => /lib64/libfmt.so.8 (0x00007ffff7ee4000) libstdc++.so.6 => /lib64/libstdc++.so.6...

Sure ``` ldd /usr/lib64/bear/libexec.so linux-vdso.so.1 (0x00007ffff7fc6000) libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007ffff7d6f000) libc.so.6 => /lib64/libc.so.6 (0x00007ffff7b40000) libm.so.6 => /lib64/libm.so.6 (0x00007ffff7a5d000) /lib64/ld-linux-x86-64.so.2 (0x00007ffff7fc8000) libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007ffff7a43000) ```

You can reproduce it with the following Dockerfile: ```Dockerfile FROM opensuse/tumbleweed RUN zypper -n install gcc-c++ git mpfr-devel gmp-devel mpc-devel flex bison make Bear RUN git clone --depth=1 git://gcc.gnu.org/git/gcc.git WORKDIR...

I would like to support the pull request. The feature is really missing as one can't easily (URL needs to be adjusted) hide the highlighted text.

My false-positive example: ```python3 def foo(forbidden_calls, forbidden_functions, strings): for fn in forbidden_calls: f = forbidden_functions[fn] waiver = any(map(lambda string: f['waiver_regex'].search(string), strings)) return waiver ``` ``` flake8 /tmp/demo.py /tmp/demo.py:4:41: B023 Function...

https://gcc.gnu.org/onlinedocs/gcc-12.1.0/gcc/Common-Function-Attributes.html#Common-Function-Attributes seek for `alias ("target")`

> Maybe this could be added to GCC? Adding @marxin to the discussion: Is the ability to mark code as to be excluded from code coverage measurements something that could...