Rafael Kitover

Results 159 comments of Rafael Kitover

It seems that `$env:USERPROFILE` is not used if the user is elevated, which is the case in an ssh session because you are elevated in an ssh session. This patch...

@akuropka as far as I know ssh sessions are elevated automatically on Windows and I remove the `match Group administrators` in my `sshd_config`, that just specifies the `authorized_keys` file. My...

Maybe, I should probably do a proper PR for this and think this through fully.

There are also a couple of build issues I had to deal with, so might as well do that.

In my case, the command on Linux: ```bash cmake .. -G Ninja ``` , gives: ```console -- Performing Test HAVE_ASM_SSE2 CMake Error: CMAKE_ASM_COMPILER not set, after EnableLanguage CMake Error at...

Ok I just found out why I have the problem I have, I have this defined in my `~/.bashrc`: ```bash export CC="ccache gcc" export CXX="ccache g++" ``` , when I...

@afbjorklund Further observations: - On my relatively recent Gentoo with `as` version `2.38` I get the exact error you describe, in the zstd source file `lib/decompress/huf_decompress_amd64.S`. - In my up...

@afbjorklund So we are using cmake's `add_subdirectory(dir)` to build zstd using their cmake code, and the problem is there. And we are currently using the latest version, `1.5.2`. I suggest...

Just tried this in fact: ```bash git clone [email protected]:facebook/zstd cd zstd mkdir build-asm-opt cd build-asm-opt cmake ../build/cmake -DCMAKE_ASM_COMPILER=as -G Ninja LANG=C ninja -v ``` , gives: ```console [1/15] /usr/bin/as --defsym...

Just opened: https://github.com/facebook/zstd/issues/3193 .