You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the cmakelists txt there is a line if not android add option -msse3 this assumes that the user uses a compatible architecture which is generally a bad idea because you can run almost any os on ARM and via versa so you could replace it with
for example :
(its not in code tags because its a example )
in the cmakelists txt there is a line if not android add option -msse3 this assumes that the user uses a compatible architecture which is generally a bad idea because you can run almost any os on ARM and via versa so you could replace it with
for example :
(its not in code tags because its a example )
if(CMAKE_PLATFORM_NAME == x86)
add_definition(-msse2)
elif(CMAKE_PLATFORM_NAME == x86_64)
add_definition(-msse2)
elif(CMAKE_PLATFORM_NAME == ARM)
add_definition(-mneon)
endif()
The text was updated successfully, but these errors were encountered: