Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port shapeit5 to MacOS on Apple Silicon using SIMDE #68

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove -flto. out of scope for this changeset
pettyalex committed Mar 29, 2024
commit 83e1e6227a6e229c9b55c3a83e55ecc6e8ae647b
4 changes: 2 additions & 2 deletions common/makefile_common.mk
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ dummy_build_folder_bin := $(shell mkdir -p bin)
dummy_build_folder_obj := $(shell mkdir -p obj)

#COMPILER & LINKER FLAGS
CXXFLAGS+= -O3 -flto
LDFLAGS+= -O3 -flto
CXXFLAGS+= -O3
LDFLAGS+= -O3

# Test if on x86 and target Haswell & newer.
# Disable this if building on x86 CPUs without AVX2 support.