File tree Expand file tree Collapse file tree 4 files changed +1
-12
lines changed
test/lint/test_runner/src Expand file tree Collapse file tree 4 files changed +1
-12
lines changed Original file line number Diff line number Diff line change 29
29
/* Copyright year */
30
30
#define COPYRIGHT_YEAR @COPYRIGHT_YEAR@
31
31
32
- /* Define this symbol to build code that uses ARMv8 SHA-NI intrinsics */
33
- #cmakedefine ENABLE_ARM_SHANI 1
34
-
35
32
/* Define if external signer support is enabled */
36
33
#cmakedefine ENABLE_EXTERNAL_SIGNER 1
37
34
Original file line number Diff line number Diff line change @@ -217,5 +217,4 @@ if(NOT MSVC)
217
217
" HAVE_ARM_SHANI
218
218
CXXFLAGS ${ARM_SHANI_CXXFLAGS}
219
219
)
220
- set (ENABLE_ARM_SHANI ${HAVE_ARM_SHANI} )
221
220
endif ()
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #include < bitcoin-build-config.h> // IWYU pragma: keep
6
-
7
5
#include < crypto/sha256.h>
8
6
#include < crypto/common.h>
9
7
Original file line number Diff line number Diff line change @@ -614,12 +614,7 @@ fn lint_includes_build_config() -> LintResult {
614
614
"*.cpp" ,
615
615
"*.h" ,
616
616
] )
617
- . args ( get_pathspecs_default_excludes ( ) )
618
- . args ( [
619
- // These are exceptions which don't use bitcoin-build-config.h, rather CMakeLists.txt adds
620
- // these cppflags manually.
621
- ":(exclude)src/crypto/sha256_arm_shani.cpp" ,
622
- ] ) ,
617
+ . args ( get_pathspecs_default_excludes ( ) ) ,
623
618
)
624
619
. expect ( "grep failed" ) ;
625
620
git ( )
You can’t perform that action at this time.
0 commit comments