From 2b6ef8284f5c95368d773aad068b29a1302270ed Mon Sep 17 00:00:00 2001 From: Björn Persson Date: Aug 13 2013 20:58:22 +0000 Subject: Corrected and expanded the architecture lists. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/fedora-gnat-project-common/trunk@37 ffb95eb5-2024-4977-8b95-d8f13d9cd9b7 --- diff --git a/directories.gpr.in b/directories.gpr.in index cde7465..dc4273e 100644 --- a/directories.gpr.in +++ b/directories.gpr.in @@ -21,14 +21,16 @@ project Directories is type Platform_Type is ("i386", "x86_64", "ppc", "ppc64", "s390", "s390x", - "sparc", "sparc64", "arm", "alpha", "ia64"); + "sparc", "sparc64", "arm", "armv7l", "aarch64", + "alpha", "ia64", "sh"); Hardware_Platform : Platform_Type := external ("HARDWARE_PLATFORM"); Lib := ""; case Hardware_Platform is - when "i386" | "ppc" | "s390" | "sparc" | "arm" => + when "i386" | "ppc" | "s390" | "sparc" | "arm" | "armv7l" | "alpha" | + "ia64" | "sh" => Lib := "lib"; - when "x86_64" | "ppc64" | "s390x" | "sparc64" | "alpha" | "ia64" => + when "x86_64" | "ppc64" | "s390x" | "sparc64" | "aarch64" => Lib := "lib64"; end case; Libdir := "@exec_prefix@/" & Lib;