Alex Reinking
Alex Reinking
The [CBlas](http://www.netlib.org/blas/cblas.h) interface is standard. Modern BLASes are written in C, too. See [OpenBLAS](https://github.com/xianyi/OpenBLAS) for example.
I have this problem running from CTest, too.
> Of course, a conscious user can just pass the necessary flag to define the location ahead of time: > ``` > cmake -S . -B build -D CMAKE_INSTALL_INCLUDEDIR=include/FunctionalPlus >...
> `CMAKE_INSTALL_INCLUDEDIR` has [never](https://github.com/Kitware/CMake/blame/0f37cd228e9668d981ff75f3e1c63d4f716b7e57/Modules/GNUInstallDirs.cmake#L235) meant anything other than `include`, so the above will never misbehave and if the user already provided a different path, then that path will be used,...
I did test on x86 cross compilation just using `-march=i686` and it worked. I can't speak to big endian architectures without emulating them, but I definitely trust CMake's dedicated module...
It would definitely be wise to test these scenarios on qemu using Docker. I _could_ put together a PR that adds such workflows, but it would take me a significant...
Here's a bit more elaboration on my reasoning... Looking just at the first commit, all I did was change the logic that sets WABT_BIG_ENDIAN from the bespoke logic coded before...
I can emulate a big endian machine, no problem. Unfortunately, I don't own any Apple Silicon hardware. I will ask my team if we can take our Apple Silicon CI...
# Testing ## Docker ### Setup Prerequisites: ``` $ sudo apt install qemu binfmt-support qemu-user-static $ docker run --rm --privileged multiarch/qemu-user-static --reset -p yes $ docker run --rm -t s390x/ubuntu...
@keithw - is there a known-good commit for s390x? I have gone all the way back to 3c4bad02b95e8ef6b4f773647adcbe467cc316f3 and haven't found one that passes `IntepTest.Rot13`. All the other tests in...