ssj71 / rkrlv2

Rakarrack Effects Ported to LV2 Plugins
GNU General Public License v2.0
53 stars 10 forks source link

lv2: enable -msse flags on x86 arch only #46

Closed auto3000 closed 3 years ago

auto3000 commented 3 years ago

For odroid-c2 board, the system architecture is "aarch64" instead of "arm". The proposal is to apply -msse flags only on x86 arch. On my system, this is working properly, my system is detected by "x86_64" and matches the expression "x86|X86|amd64|AMD64".

I read that, in the worst case, the detected system is "Unknown". In that case, this is preferable to avoid "-msse" flags too.

The idea for the solution: https://stackoverflow.com/a/26662907

Where the issue was found for reference: https://github.com/auto3000/meta-pedalpi/issues/42

ssj71 commented 3 years ago

Thanks again for the help!