Patryk Kielar

Results 27 comments of Patryk Kielar

I build mold with commit 4caadefac64b99157231e3bb727c2674f8a5d328 now and could use, after this `-Wl,--thinlto-jobs=all` (LLVM/CLANG) to builds apps without problem. THANK YOU!

@eustas ``` CARCH="x86_64" CHOST="x86_64-pc-linux-gnu" #-- Compiler and Linker Flags export CC=clang export CXX=clang++ #CPPFLAGS="" CFLAGS="-march=native -mtune=native -O3 -pipe -fno-plt -fexceptions \ -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security \ -fstack-clash-protection -fcf-protection" CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now...

If I change in `makepkg.conf` 3 lines to: ```bash LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -Wl,--thinlto-jobs=all -fuse-ld=lld" LTOFLAGS="-flto=thin" OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug lto) ``` It fails, but give [this](https://gist.github.com/roland-rollo/36116346ec8ca8612d83250300705d37) as output.

+1 for first option: adding fuzzy search.

I can confirm, with new [preview](https://github.com/microsoft/winget-cli/releases/tag/v1.2.3411-preview) version, I was able to use ssh on virtual machine with windows, update and install applications.

I use Arch Linux. As my terminal Alacritty, use KVM for virtualization, and installed Windows 11 and use [this](https://github.com/PowerShell/Win32-OpenSSH/releases/tag/V8.6.0.0p1-Beta) for ssh server in Windows 11 VM. Hmm. I created new...

Hmm, I tried this at computers with Windows 10 at work, and they have this same error message as in ranavale and ghost screenshots. EDIT. I tried few Windows 10...

@rvaiya is this somehow helpful? https://github.com/flatpak/xdg-desktop-portal/pull/711

Sorry if this is a noob question: exa uses `LS_COLORS` which is part of `coreutils` and is written in C and has its own `EXA_COLORS` implementation which overrides `LS_COLORS`. If...

@eggbean Thanks! I read it all and now better understand what's going on. Is it any helpful that there is coreutils written in Rust and so [dircolors](https://github.com/uutils/coreutils/tree/main/src/uu/dircolors)? I started learning...