Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```