mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Never build avx2 without avx2
This commit is contained in:
parent
97fe2f0bf4
commit
912fc5d412
1 changed files with 1 additions and 1 deletions
|
|
@ -29,6 +29,6 @@ pub mod u32;
|
|||
pub mod u64;
|
||||
|
||||
/// Code using AVX2.
|
||||
#[cfg(all(feature="yolocrypto", feature="avx2_backend"))]
|
||||
#[cfg(all(target_feature="avx2", feature="yolocrypto", feature="avx2_backend"))]
|
||||
pub mod avx2;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue