Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,12 @@ endif

ifeq ($(KERNEL),Linux)
# Soppressione warning ABI e impostazioni vettoriali per Linux
CXXFLAGS += -Wno-psabi -mprefer-vector-width=256 -mno-avx512f
CXXFLAGS += -Wno-psabi

# Flag specifiche per architetture x86
ifeq ($(findstring x86,$(ARCH)),x86)
CXXFLAGS += -mprefer-vector-width=256 -mno-avx512f
endif

# Flag specifiche per architetture AVX2
ifeq ($(avx2),yes)
Expand Down