aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2020-01-13 21:39:12 +0000
committerPascal Terjan <pterjan@mageia.org>2020-01-14 19:17:30 +0000
commit80876c03f9e23523a04daedc599b8f7d0d984c67 (patch)
tree4777ef91f792729ded5ce1a63132f8c2e64e735e
parent9b000fc5e906ee570171059c3d97cf56309f941f (diff)
downloadiurt-80876c03f9e23523a04daedc599b8f7d0d984c67.tar
iurt-80876c03f9e23523a04daedc599b8f7d0d984c67.tar.gz
iurt-80876c03f9e23523a04daedc599b8f7d0d984c67.tar.bz2
iurt-80876c03f9e23523a04daedc599b8f7d0d984c67.tar.xz
iurt-80876c03f9e23523a04daedc599b8f7d0d984c67.zip
Allow building arm v5 and v7 on armv8l
Also cleanup arch_comp, no need to list to say an arch is compatible with itself.
-rw-r--r--lib/Iurt/Config.pm12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/Iurt/Config.pm b/lib/Iurt/Config.pm
index 32b87e4..1600e5b 100644
--- a/lib/Iurt/Config.pm
+++ b/lib/Iurt/Config.pm
@@ -26,15 +26,13 @@ our @EXPORT = qw(
);
our %arch_comp = (
- 'i586' => { 'i386' => 1, 'i486' => 1, 'i586' => 1 },
- 'i686' => { 'i386' => 1, 'i486' => 1, 'i586' => 1, 'i686' => 1 },
- 'x86_64' => { 'x86_64' => 1 },
- 'ppc' => { 'ppc' => 1 },
- 'ppc64' => { 'ppc' => 1, 'ppc64' => 1 },
+ 'i586' => { 'i386' => 1, 'i486' => 1 },
+ 'i686' => { 'i386' => 1, 'i486' => 1, 'i586' => 1 },
+ 'ppc64' => { 'ppc' => 1 },
'armv5tejl' => { 'armv5tl' => 1 },
'armv5tel' => { 'armv5tl' => 1 },
- 'armv5tl' => { 'armv5tl' => 1 },
- 'armv7l' => { 'armv5tl' => 1, 'armv7hl' => 1, 'armv7hnl' => 1 },
+ 'armv7l' => { 'armv5tl' => 1, 'armv7hnl' => 1 },
+ 'armv8l' => { 'armv5tl' => 1, 'armv7hl' => 1, 'armv7hnl' => 1 },
);