TheGuyThatSleepsTooMuch / mupen64plus

Automatically exported from code.google.com/p/mupen64plus
0 stars 0 forks source link

glide64mk2: NO_ASM should imply NOSSE #612

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I tried building glide64mk2 on OpenBSD macppc. The Makefile sets -DNO_ASM 
properly, but the build fails in src/Glide64/3dmath.cpp because it contains the 
following:

    #ifndef NOSSE
    #include <xmmintrin.h>
    #endif

NOSSE is not defined, xmmintrin.h (a SSE-related header) does not exist on my 
PowerPC system, and the build fails. NOSSE should be defined. I'm not sure if 
NO_ASM should imply -DNOSSE, but being PowerPC certainly should.

Original issue reported on code.google.com by anth...@cathet.us on 10 May 2014 at 4:29