Andrew V. Teylu
Andrew V. Teylu
I changed the auto-generated interestingness test so it now looks like this: ```bash #!/bin/bash set -eu clang_delta="/home/avj/clones/cvise/master/build/clang_delta/clang_delta" pass_name="lift-assignment-expr" max_passes="1" cc="g++-7" cflags="-I. -m64 -std=c++14 -c -Wall -Wextra -Werror -Wno-deprecated-declarations -Wno-unused-parameter -Wno-unused-variable...
Apologies that I was quite noisy on this thread, one question at a time ... how can I manually [re-run `IncludesPass`](https://github.com/marxin/cvise/issues/52#issuecomment-882821685) (which is a `cvise` pass and not a `clang_delta`...
Right now, I'm unable to share my example for `IncludesPass` because it contains proprietary code of my employer :( Let me see what I can do about reducing it ...
@JVApen what are you trying to reduce here? Do you have access to a Linux box? I have successfully reduced multiple, many-MiB TUs, compiled with MSVC, using `cvise`, but doing...
Awesome news you have it building on Windows!!!
For `psutil`, and if you're restricted in what you can download/install, I would `git clone` the [`psutil` repo](https://github.com/giampaolo/psutil), run `python setup.py build` and then manually set `PYTHONPATH` to use the...
Okay, so changing: ``` #define BACKWARD_HAS_LIBUNWIND 0 #define BACKWARD_HAS_UNWIND 1 ``` to ``` #define BACKWARD_HAS_LIBUNWIND 1 #define BACKWARD_HAS_UNWIND 0 ``` gives me better traces: ``` Stack trace (most recent call...
For anyone interested, I implemented @BYK's [suggestion](https://github.com/alacritty/alacritty/issues/2324#issuecomment-513961556) here: - https://github.com/andrewvaughanj/alacritty/commit/8d2d1eb780ed7b24004c9595595cc83aa131c795 - https://github.com/andrewvaughanj/alacritty/tree/windows_paste_crlf Without this change, copy-and-pasting from Windows *into* Alacritty (e.g., into `vim`) would have these duplicated newlines. This simple...
100% my changes are not going to be integrated; they work-around bugs in ConPTY that are "not interesting" to Alacritty (there's no criticism here; Alacritty as a project is welcome...
If you spend enough time reading the issue track for Alacritty, it becomes quite clear that the project "is not interested" in supporting users that fall outside of their desired...