-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Get Cargo workflow to work again - Remove unused LICENSE allow in deny.toml (tool would report error otherwise) - Fix permissioning in "On Main Push" top-level workflow - Fix argument expansion in ci_tests.sh - Fix OBJDIR resolving in ci_tests.sh - Use linux_clang_haswell instead of linux_clang_zen2 for AVX2 tests
- Loading branch information
Showing
9 changed files
with
102 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
BUILDDIR?=linux/clang/haswell | ||
|
||
include config/base.mk | ||
include config/extra/with-security.mk | ||
include config/extra/with-clang.mk | ||
include config/extra/with-x86-64.mk | ||
include config/extra/with-debug.mk | ||
include config/extra/with-brutality.mk | ||
include config/extra/with-optimization.mk | ||
include config/extra/with-threads.mk | ||
include config/extra/with-openssl.mk | ||
include config/extra/with-zstd.mk | ||
|
||
CPPFLAGS+=-march=haswell -mtune=haswell | ||
|
||
CPPFLAGS+=\ | ||
-DFD_HAS_INT128=1 \ | ||
-DFD_HAS_DOUBLE=1 \ | ||
-DFD_HAS_ALLOCA=1 \ | ||
-DFD_HAS_X86=1 \ | ||
-DFD_HAS_SSE=1 \ | ||
-DFD_HAS_AVX=1 \ | ||
-DFD_HAS_AESNI=1 | ||
|
||
FD_HAS_INT128:=1 | ||
FD_HAS_DOUBLE:=1 | ||
FD_HAS_ALLOCA:=1 | ||
FD_HAS_X86:=1 | ||
FD_HAS_SSE:=1 | ||
FD_HAS_AVX:=1 | ||
FD_HAS_AESNI:=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters