https://github.com/project-everest/hacl-star
Raw File
Tip revision: f86d2d27c7222d02ca8edfe160dab637727c3953 authored by Ann Weine on 07 September 2021, 16:54:43 UTC
Adapting to f* changes
Tip revision: f86d2d2
Makefile.mozilla.config
# Mozilla doesn't want to rely on the configure script, so we hardcode the
# assumption that AVX and AVX2 are available.
TARGET_ARCHITECTURE = x64
CFLAGS_128 = -mavx
CFLAGS_256 = -mavx -mavx2
COMPILE_VEC128 = 1
COMPILE_VEC256 = 1
COMPILE_VALE = 1
COMPILE_INLINE_ASM = 1
COMPILE_INTRINSICS = 1
back to top