Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
export PATH="/usr/local/opt:/Users/runner/.local/bin:/opt/homebrew/bin/python3.10/bin:$PATH"

brew install gnu-sed autoconf automake libtool protobuf openssl lowdown libsodium
brew install gnu-sed autoconf automake libtool protobuf openssl lowdown libsodium make

# https://github.com/grpc/grpc/issues/31737#issuecomment-1323796842
export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1
Expand All @@ -50,7 +50,7 @@ jobs:
export LIBRARY_PATH=/opt/homebrew/lib

uv run ./configure --disable-valgrind --disable-compat
uv run make
uv run gmake

- name: Start bitcoind in regtest mode
run: |
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ have_function_sections()
TMPOBJFILE=$CONFIG_VAR_FILE.$$.o

echo "int foo(void); int foo(void) { return 0; }" > $TMPCFILE
$1 $2 -ffunction-sections -Wl,--gc-sections -c $TMPCFILE -o $TMPOBJFILE
$1 $2 -ffunction-sections -Wl,--gc-sections $TMPCFILE -o $TMPOBJFILE
}

usage()
Expand Down
Loading