compiling on raspberry pi - success but after code modification

Issue #484 new
Dariusz Bogdanski created an issue

I have finally managed to compile x265 on raspberry pi as part of handbreak build (https://github.com/kapitainsky/handbreak-RaspberryPi) but I had to modify

/x265/source/contrib/x265/x265_3.0/source/common/primitives.cpp

by changing

#if X265_ARCH_ARM == 0
void PFX(cpu_neon_test)(void) {}
int PFX(cpu_fast_neon_mrc_test)(void) { return 0; }
#endif // X265_ARCH_ARM

to

#if X265_ARCH_ARM != 0
void PFX(cpu_neon_test)(void) {}
int PFX(cpu_fast_neon_mrc_test)(void) { return 0; }
#endif // X265_ARCH_ARM

These two functions should be NOPs as well for ARMv7

Comments (3)

  1. Log in to comment