LeelaChessZero / lc0

The rewritten engine, originally for tensorflow. Now all other backends have been ported here.
GNU General Public License v3.0
2.41k stars 526 forks source link

fix build outside x86_64/aarch64 #2010

Closed nekopsykose closed 3 months ago

nekopsykose commented 6 months ago

the current logic includes the x86 simd header any time the platform is !arm, which is backwards

nekopsykose commented 6 months ago

technically it could add || defined(__i386__) since it's valid there too, not sure if you'd prefer that