Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: create.patch.sh
===================================================================
--- create.patch.sh	(nonexistent)
+++ create.patch.sh	(revision 112)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=8.0.2
+
+tar --files-from=file.list -xJvf ../qt-creator-$VERSION.tar.xz
+mv qt-creator-$VERSION qt-creator-$VERSION-orig
+
+cp -rf ./qt-creator-$VERSION-new ./qt-creator-$VERSION
+
+diff --unified -Nr  qt-creator-$VERSION-orig  qt-creator-$VERSION > qt-creator-$VERSION-cast-from-ascii.patch
+
+mv qt-creator-$VERSION-cast-from-ascii.patch ../patches
+
+rm -rf ./qt-creator-$VERSION
+rm -rf ./qt-creator-$VERSION-orig

Property changes on: create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: file.list
===================================================================
--- file.list	(nonexistent)
+++ file.list	(revision 112)
@@ -0,0 +1 @@
+qt-creator-8.0.2/src/tools/perfparser/CMakeLists.txt
Index: qt-creator-8.0.2-new/src/tools/perfparser/CMakeLists.txt
===================================================================
--- qt-creator-8.0.2-new/src/tools/perfparser/CMakeLists.txt	(nonexistent)
+++ qt-creator-8.0.2-new/src/tools/perfparser/CMakeLists.txt	(revision 112)
@@ -0,0 +1,28 @@
+find_package(elfutils)
+
+if (NOT elfutils_FOUND)
+  message(STATUS "PerfParser is disabled. Set ELFUTILS_INSTALL_DIR to enable it.")
+  return()
+endif()
+
+list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
+find_package(Zstd)
+
+find_package(LibRustcDemangle)
+set_package_properties(LibRustcDemangle PROPERTIES
+        DESCRIPTION "Demangling for Rust symbols, written in Rust."
+        PURPOSE "Demangling of Rust symbols"
+        URL "https://github.com/alexcrichton/rustc-demangle"
+        TYPE RUNTIME)
+
+find_package(LibDDemangle)
+set_package_properties(LibDDemangle PROPERTIES
+        DESCRIPTION "Demangling for D symbols, written in D."
+        PURPOSE "Demangling of D symbols"
+        URL "https://github.com/lievenhey/d_demangler"
+        TYPE RUNTIME)
+
+
+add_definitions(-DQT_NO_CAST_TO_ASCII -DQT_USE_QSTRINGBUILDER)
+add_subdirectory(app)
+add_subdirectory(tests)