From a1007ed14efe8d4a22e28adf90cd29e0ed339542 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle Date: Sun, 25 Aug 2024 07:42:20 +0200 Subject: [PATCH] make: add nix build step for aarch64 (but throws errors) Signed-off-by: Patrizio Bekerle --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 3febffc16a..8df0fb2714 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,10 @@ translations-update-files: nix-build: nix-build -E '((import {}).qt6Packages.callPackage (import ./default.nix) { })' +# Throws errors while building Qt6 +nix-build-aarch64: + nix-build -E '((import {}).pkgsCross.aarch64-multiplatform.qt6Packages.callPackage (import ./default.nix) { })' + nix-build-cmake-qt5: nix-build -E '((import {}).libsForQt5.callPackage (import ./build-systems/nix/default-cmake-qt5.nix) { })'