Juan Navarro

Results 175 comments of Juan Navarro

Chiming in to say "me too"... My use case was that sanitizers-cmake will be distributed as an optional CMake-only tools package with helpful CMake extensions. Users might have or not...

I see, it is then superfluous that the [ThreadSanitizerCppManual](https://github.com/google/sanitizers/wiki/ThreadSanitizerCppManual) shows this as an example call to Clang: > clang++ simple_race.cc -fsanitize=thread -fPIE -pie -g On the other hand, the comment...

I had previously studied the behavior of `POSITION_INDEPENDENT_CODE` in CMake, and can comment on how it works: - `POSITION_INDEPENDENT_CODE` is a boolean property defined for each individual target defined in...

I've just updated the CMake issue #14983 with a comprehensive description of [how to use -fPIC / -fPIE](https://gitlab.kitware.com/cmake/cmake/issues/14983#note_363197). @jprotze, are you sure that the Sanitizers don't need Position Independent Code...

I've faced the same issue, and the problem comes from the fact that `ssh [-tt] host command` will not create a *login shell*, which means that config files like .bashrc...

Well, my point was that there is already enough ways to know what version is being downloaded, so it is then possible to *rename* the downloaded file to whatever each...

Hi @pabs3 awesome thanks! This and the other CMake-related PRs will be merged. We're getting some serious contributions that push for upgrading our internal dependencies to drop forked libs and...

I was just looking around today, checking if this had been mentioned already. My `m` line is like this: ``` m=audio 9 UDP/TLS/RTP/SAVPF 0 ``` and because there is only...

I've seen this happen with other programs, such as when trying to pipe `cat` and `grep` in a shell script, and the cause is typically that the program is expecting...

`-c:v libx264 -c:a aac` literally means to re-encode anything in the input to those two codecs, so you'll be using a lot of CPU. If you wanted to only convert...