-
Notifications
You must be signed in to change notification settings - Fork 1
Update the runtime to 6.10 #154
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
Draft
AsciiWolf
wants to merge
5
commits into
master
Choose a base branch
from
runtime
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
cef536a
Update the runtime to 6.10
AsciiWolf 0b50bbb
Try fixing the LimeSDR SIGILL crash
AsciiWolf d99aaad
Remove shared-modules/libusb
AsciiWolf 5b9015f
Remove org.freedesktop.Platform.ffmpeg-full
AsciiWolf 80d089d
Remove libxml2
AsciiWolf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
| index d50dd09..999b285 100644 | ||
| --- a/CMakeLists.txt | ||
| +++ b/CMakeLists.txt | ||
| @@ -1,5 +1,5 @@ | ||
| cmake_minimum_required(VERSION 3.1.0) | ||
| -cmake_policy(SET CMP0043 OLD) | ||
| +cmake_policy(SET CMP0043 NEW) | ||
|
|
||
| include(FindPkgConfig) | ||
| list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules) | ||
| @@ -56,4 +56,4 @@ target_link_libraries(perseus-sdr | ||
| ) | ||
|
|
||
| install(FILES perseusfx2.h perseus-in.h perseus-sdr.h DESTINATION include) | ||
| -install(TARGETS perseus-sdr DESTINATION ${LIB_INSTALL_DIR}) | ||
| \ No newline at end of file | ||
| +install(TARGETS perseus-sdr DESTINATION ${LIB_INSTALL_DIR}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| From 14337e23e4e073be5377dbcefc96ed04515ac51a Mon Sep 17 00:00:00 2001 | ||
| From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= <jskarvad@redhat.com> | ||
| Date: Thu, 13 Mar 2025 18:44:13 +0100 | ||
| Subject: [PATCH] uhd: Add some missing cstdint includes | ||
|
|
||
| This aids with making UHD gcc-15 compatible (more fixes are required for | ||
| full compatibility). | ||
| --- | ||
| host/include/uhd/features/ref_clk_calibration_iface.hpp | 1 + | ||
| host/lib/include/uhdlib/usrp/dboard/fbx/fbx_constants.hpp | 1 + | ||
| 2 files changed, 2 insertions(+) | ||
|
|
||
| diff --git a/host/include/uhd/features/ref_clk_calibration_iface.hpp b/host/include/uhd/features/ref_clk_calibration_iface.hpp | ||
| index 86a20053c..7aa80628e 100644 | ||
| --- a/host/include/uhd/features/ref_clk_calibration_iface.hpp | ||
| +++ b/host/include/uhd/features/ref_clk_calibration_iface.hpp | ||
| @@ -8,6 +8,7 @@ | ||
|
|
||
| #include <uhd/config.hpp> | ||
| #include <uhd/features/discoverable_feature.hpp> | ||
| +#include <cstdint> | ||
| #include <memory> | ||
|
|
||
| namespace uhd { namespace features { | ||
| diff --git a/host/lib/include/uhdlib/usrp/dboard/fbx/fbx_constants.hpp b/host/lib/include/uhdlib/usrp/dboard/fbx/fbx_constants.hpp | ||
| index fd23fb8ef..8f1fc4e91 100644 | ||
| --- a/host/lib/include/uhdlib/usrp/dboard/fbx/fbx_constants.hpp | ||
| +++ b/host/lib/include/uhdlib/usrp/dboard/fbx/fbx_constants.hpp | ||
| @@ -10,6 +10,7 @@ | ||
| #include <unordered_map> | ||
| #include <array> | ||
| #include <cstddef> | ||
| +#include <cstdint> | ||
| #include <cstring> | ||
| #include <list> | ||
| #include <map> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.