John Maloney
John Maloney
P.S. I get the error with either setting of the BLEND2D_NO_JIT flag.
Thanks for the quick response! The issue with matrix.cpp is fixed. However, I am still getting this error: /usr/lib/gcc/arm-linux-gnueabihf/8/include/arm_neon.h:6286:1: error: inlining failed in call to always_inline ‘uint32_t vgetq_lane_u32(uint32x4_t, int)’: target...
gcc 8.3 seems pretty old so I'm guessing that's the issue. Raspberry Pi just released a new version of Raspian OS this month based on Debian Bullseye, and I'm guessing...
BTW, will the JIT pipeline eventually work on Raspberry Pi? How much speedup would that provide for solid-color filled polygons and stroked paths?
Can I set -mneon by manually editing CMakeLists.txt to build and test Blend2d on the RaspberryPi? How would I do that? Thanks!
No luck. I get the compiler error: "unrecognized command line option '-mneon'. I'm guessing the default Raspbian compiler, gcc 8.3.0, is simply not up to the job. I will try...
I updated to Bullseye. I also had to manually install g++ using `sudo apt install g++` That got me gcc/g++ 10.2.1-6+rpi1 That compiler doesn't seem to like -mneon. Instead, it...
As I understand it, the Raspberry Pi has a 64-bit capable ARM processor, but the operating system is running in 32-bit mode. I'm guessing the compiler is set up to...
SOLVED! `-march=armv8-a+simd` didn't work but `-mfpu=neon` did, and with that flag blend2d compiles and runs on both Raspberry Pi OS Buster (the previous release) and Bullseye (the current release) on...
Do you mean the current Raspberry Pi OS release? I can give it a try when I get some time (i.e. not immediately). It's been quite a while since I...