Skip to content

Commit

Permalink
Add more detailed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe authored Feb 7, 2025
1 parent 5966078 commit 20403a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/fetch_bladebit_harvester.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,11 @@ else
pushd "${dst_dir}"
tar -xzvf "../../${artifact_name}"
if [[ "${host_os}" == "linux" ]] && [[ "${host_arch}" == "x86-64" ]]; then
# On linux clear the GNU_STACK executable bit for glibc 2.41 compat
# On Linux clear the GNU_STACK executable bit for glibc 2.41 compatability
# TODO: this should be removed when there is a new bladebit library
# that clears this explicitly during compiling/linking
# see https://github.com/Chia-Network/bladebit/pull/481
# and https://github.com/BLAKE3-team/BLAKE3/issues/109
execstack -c lib/libbladebit_harvester.so
fi
popd
Expand Down

0 comments on commit 20403a3

Please sign in to comment.