diff options
author | lloyd <[email protected]> | 2012-04-26 13:32:37 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-04-26 13:32:37 +0000 |
commit | a062a3f81a283b5f3edabd188eecebbf8acb9967 (patch) | |
tree | 141106e9996590533fb6eb494c5c73bcd9419f37 /src/entropy/rdrand/info.txt | |
parent | 25f329b8a45b6f84f9a01a0326db48f6853dc59c (diff) |
Add support for the rdrand instruction, added in Intel's Ivy Bridge
processors. Tested using SDE on Linux with GCC 4.6, Intel C++ 11.1,
and Clang 3.0, all using the inline asm variant. I do not know if
current Visual C++ has the intrinsics available or not, so it's only
marked as available for those compilers at the moment.
Diffstat (limited to 'src/entropy/rdrand/info.txt')
-rw-r--r-- | src/entropy/rdrand/info.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/entropy/rdrand/info.txt b/src/entropy/rdrand/info.txt new file mode 100644 index 000000000..4b9362d61 --- /dev/null +++ b/src/entropy/rdrand/info.txt @@ -0,0 +1,20 @@ +define ENTROPY_SRC_RDRAND + +<source> +rdrand.cpp +</source> + +<header:internal> +rdrand.h +</header:internal> + +<arch> +x86 +x86_64 +</arch> + +<cc> +gcc +clang +icc +</cc> |