Skip to content

Commit

Permalink
test6
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuzzbawls committed Aug 5, 2024
1 parent 220ee29 commit b490154
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ jobs:
unit_tests: true
functional_tests: true
goal: deploy
cc: clang
cxx: clang++
cc: $(brew --prefix llvm@15)/bin/clang
cxx: $(brew --prefix llvm@15)/bin/clang++
BITCOIN_CONFIG: "--enable-zmq --enable-gui --enable-reduce-exports --enable-werror --enable-debug --with-boost=/opt/homebrew/opt/[email protected]"

steps:
Expand Down Expand Up @@ -289,6 +289,7 @@ jobs:
if [ "${{ matrix.config.os }}" = "macos-14" ]; then
export CPPFLAGS="-I/opt/homebrew/opt/[email protected]/include -I/opt/homebrew/opt/berkeley-db@4/include"
export LDFLAGS="-L/opt/homebrew/opt/[email protected]/lib -L/opt/homebrew/opt/berkeley-db@4/lib"
export BOOSTROOT="/opt/homebrew/opt/[email protected]"
fi
if [[ ${{ matrix.config.os }} = ubuntu* ]]; then
Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ if test "x$CXXFLAGS_overridden" = "xno"; then
AX_CHECK_COMPILE_FLAG([-Wdeprecated-register], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-register"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-implicit-fallthrough"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wenum-constexpr-conversion], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-enum-constexpr-conversion"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wdeprecated-builtins], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-builtins"], [], [$CXXFLAG_WERROR])
fi

enable_sse42=no
Expand Down

0 comments on commit b490154

Please sign in to comment.