Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rleh/fedora-arm-none-eabi-gdb
https://copr.fedorainfracloud.org/coprs/rleh/arm-none-eabi-gdb
https://github.com/rleh/fedora-arm-none-eabi-gdb
Last synced: about 2 months ago
JSON representation
https://copr.fedorainfracloud.org/coprs/rleh/arm-none-eabi-gdb
- Host: GitHub
- URL: https://github.com/rleh/fedora-arm-none-eabi-gdb
- Owner: rleh
- Created: 2023-03-12T14:05:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-09T10:21:43.000Z (3 months ago)
- Last Synced: 2024-10-12T19:47:34.638Z (3 months ago)
- Size: 2.27 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fedora Package `arm-none-eabi-gdb`
https://copr.fedorainfracloud.org/coprs/rleh/arm-none-eabi-gdb/
## How-To build local
Using Docker/Podman:
```sh
podman run --rm -it fedora:40
```
Inside the container shell:
```sh
dnf install rpmdevtools dnf-plugins-core
rpmdev-setuptree
```On your machine, copy the Spec file and keyring into the container:
```sh
podman cp arm-none-eabi-gdb.spec {container_name}:/root/rpmbuild/SPECS/
podman cp gnu-keyring.gpg {container_name}:/root/rpmbuild/SOURCES/
```Install build dependencies and build (from container shell):
```sh
cd
dnf builddep rpmbuild/SPECS/arm-none-eabi-gdb.spec
rpmbuild --undefine=_disable_source_fetch -ba rpmbuild/SPECS/arm-none-eabi-gdb.spec
```