qyot27

Results 17 comments of qyot27

Has GCC/Binutils finally added support for AArch64 PE? Because last I knew, that was one of the largest problems trying to do either native builds with MSys2 or cross-compiles with...

If the DirectX headers really aren't necessary, then they definitely should be removed. Is there any indication that the DirectShow headers rely on the DirectX headers silently, and that's why...

Integrating the baseclasses into the repo is a non-starter, IMO (classic AviSynth did that between 2.6.0 and 2.6.1 and I cringed). It's not just bad from an organizational standpoint, there's...

No plugins can be built with MinGW-w64 right now anyway, so whether DSS can doesn't really matter. GCC support is very experimental as it is, so it's not an immediate...

From what I understand of the way Clang works internally, if it's not mimicking MSVC on Windows, it's mimicking GCC. And that intrinsics issue is something that GCC suffers from...

Any particular reason to use `__clang__` instead of the `CLANG` define provided by `avs/config.h`? Anyway, modifying all the places where `#ifdef __clang__` showed up to `#if defined(CLANG) || defined(GCC)`, unsetting...

After disabling the use of `-march=native`: ``` mkdir -p avisynth-build/i686 avisynth-build/amd64 && \ cd avisynth-build/i686 && \ cmake ../../ -G "Ninja" -DCMAKE_INSTALL_PREFIX=$HOME/avisynth+_build/32bit \ -DCMAKE_TOOLCHAIN_FILE="/usr/x86_64-w64-mingw32/toolchain-x86_64-w64-mingw32.cmake" \ -DCMAKE_C_FLAGS="-m32" -DCMAKE_CXX_FLAGS="-m32" -DCMAKE_RC_FLAGS="-F pe-i386" \...

All of that was with the three commits that were pushed today.

In GCC's 8.3 release (and in the master branch): https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/config/i386/smmintrin.h;h=b7257a562eae4958538733c3b092457525f94c31;hb=refs/heads/gcc-8-branch#l580 No ifdef at all, defined as ``` 580 /* Load double quadword using non-temporal aligned hint. */ 581 extern __inline...

Yeah, that's definitely not correct. The video is instructing for the old pre-w64 MinGW, although I only skimmed it. You'll want to use the MSys2 installer to set up the...