Steffen Klee
Steffen Klee
According to a [Lenovo forum thread](https://forums.lenovo.com/t5/Other-Linux-Discussions/Linux-on-T495/m-p/4474320#M13440) referenced by [this comment](https://github.com/nmikhailov/Validity90/issues/72#issuecomment-517601635), a driver for the fingerprint reader in the T495 model is in the works. This might apply to the T480...
This happens when trying to debug a coredump: ``` $ cat test.c int main(int argc, char **argv) { char *c = 0; *c = 5; return 0; } $ gcc...
I've had a similar problem. My setup exemplified: Multiple VMs connected to one bridged interface in subnet 192.168.122.0/24. Host redirects traffic on public port to VM-1, let's say public port...
For anyone struggling with setting `LANG` or `LC_ALL` having no effect, [look at the value of `LANGUAGE`](https://www.gnu.org/software/gettext/manual/gettext.html#The-LANGUAGE-variable). This takes precedence over `LANG` and `LC_ALL`, so you have to set this...
@m4k2k This issue is about TLS Client Certificate Authentication (CCA), not trusting additional CA certificates.
Did you use the prebuilt binaries or did you set the `BUILD_ICU` option? The prebuilt binaries are built with mingw-w64 so they are most likely not compatible with Visual C.
Actually, icu-cmake was originally intended to be compatible with Unix environments, which means MinGW on Windows. That's why building should only work in a Unix-like environment since it uses the...
The patch utility is part of the Unix-like environment, e.g. MinGW.
For the time being, I fixed it with: ```diff --- a/amdgpu_fan/lib/amdgpu.py +++ b/amdgpu_fan/lib/amdgpu.py @@ -48,7 +48,7 @@ class Card: def fan_speed(self): try: return int(self.read_endpoint('fan1_input')) - except KeyError: # better to...
Please find a compiled version attached. [app-debug.zip](https://github.com/nfcgate/nfcgate/files/14289035/app-debug.zip) @weebl2000 Maybe you need to reload the CMake project because `bool SymbolTable::parse` is defined in a new file `SymbolTable.cpp`.