Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] - compile failure on Amazon, Oracle, RHEL, and Rocky #920

Open
bitcoin-tools opened this issue May 18, 2024 · 2 comments · May be fixed by #982
Open

[BUG] - compile failure on Amazon, Oracle, RHEL, and Rocky #920

bitcoin-tools opened this issue May 18, 2024 · 2 comments · May be fixed by #982
Labels
bug Something isn't working

Comments

@bitcoin-tools
Copy link
Owner

Expected Behavior

Missing the default packages that fedora has

Actual Behavior

Add the proper package repositories to dnf

Steps to Reproduce

Optional Screenshots

No response

Optional Logs

No response

Operating System

No response

Operating System version

No response

@bitcoin-tools bitcoin-tools added the bug Something isn't working label May 18, 2024
@bitcoin-tools
Copy link
Owner Author

bitcoin-tools commented May 18, 2024

  echo "${TARGET_OPERATING_SYSTEM}"
  case "${TARGET_OPERATING_SYSTEM}" in
  *amzn*)
    sudo dnf config-manager --set-enabled amzn2023-core
    ;;
  *ol*)
    sudo dnf config-manager --add-repo=https://yum.oracle.com/repo/OracleLinux/OL9/AppStream/"${TARGET_ARCHITECTURE}"
    ;;
  *rhel*)
    sudo dnf config-manager --enable rhel-9-for-x86_64-appstream-rpms
    ;;
  *rocky*)
    sudo dnf config-manager --set-enabled devel
    ;;
  *) ;;
  esac

@bitcoin-tools bitcoin-tools changed the title [BUG] - compile from source fails on Amazon, Oracle, RHEL, and Rocky [BUG] - compile failure on Amazon, Oracle, RHEL, and Rocky May 19, 2024
@bitcoin-tools
Copy link
Owner Author

bitcoin-tools commented May 30, 2024

For RHEL, rocky, and oracle:

if ! dnf list installed epel-release > /dev/null; then
  sudo dnf --assumeyes install https://dl.fedoraproject.org/pub/epel/epel-release-latest-$(rpm -E '%{rhel}').noarch.rpm
fi
sudo dnf install qrencode-devel
sudo dnf install zeromq-devel

@bitcoin-tools bitcoin-tools linked a pull request May 30, 2024 that will close this issue
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant