|
using xmmintrin.h in ubuntu
hi,
I am working on inline assembly coding for which I need to use xmmintrin.h file.
But this file require variable called 'SSE' which is hardware feature provided by processor.
I am using Core 2 duo processor.
Header file has following code,
#ifndef __SSE__
# error "SSE instruction set not enabled"
#else
Now I want to know how I can enable SSE instruction set on Ubuntu.
Thanks in advance,
Vijay.
|