I am able to build urho just fine.
However, on 1 of 3 different machines, I am unable to build my project.
In file included from /urho/Urho_BUILD/include/Urho3D/Engine/../Core/../Core/../Math/../Math/../Math/Quaternion.h:28:0,
from /urho/Urho_BUILD/include/Urho3D/Engine/../Core/../Core/../Math/../Math/Matrix4.h:25,
from /urho/Urho_BUILD/include/Urho3D/Engine/../Core/../Core/../Math/Matrix3x4.h:25,
from /urho/Urho_BUILD/include/Urho3D/Engine/../Core/../Core/Variant.h:29,
from /urho/Urho_BUILD/include/Urho3D/Engine/../Core/Object.h:26,
from /urho/Urho_BUILD/include/Urho3D/Engine/Engine.h:25,
from /urho/myurho_project/src/Main.cpp:2:
/apps/GCC/gcc-4.8.1/lib/gcc/x86_64-unknown-linux-gnu/4.8.1/include/emmintrin.h:31:3: error: #error "SSE2 instruction set not enabled"
# error "SSE2 instruction set not enabled"
It appears that its an SSE problem.
I’ve built with -DURHO_SSE=0, but that doesnt seem to change anything.
As well, I have noticed another weird output anomaly when building urho3D (unrelated maybe to the above issue). Using -DURHO3D_LIB_TYPE=SHARED, the cmake output shows:
Static Enabled = ON
Shared Enabled = OFF
Something to that effect. Not sure if that is correct?
Anyway, how should I proceed in getting my project to compile on this outlyer machine?