From 1c6dc5dfc030b1d0a2125a2d7a74952e72b7d7dd Mon Sep 17 00:00:00 2001 From: Björn Persson Date: Mar 29 2015 08:04:02 +0000 Subject: Added ppc64le. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/fedora-gnat-project-common/trunk@48 ffb95eb5-2024-4977-8b95-d8f13d9cd9b7 --- diff --git a/directories.gpr.in b/directories.gpr.in index cf38cfa..15cc2ff 100644 --- a/directories.gpr.in +++ b/directories.gpr.in @@ -1,5 +1,5 @@ -- This file helps GNAT project files to work in a multilib system. --- Copyright 2009 - 2013 B. Persson, Bjorn@Rombobeorn.se +-- Copyright 2009 - 2015 B. Persson, Bjorn@Rombobeorn.se -- You may do whatever you want with this code as long as you acknowledge the -- author's copyright. @@ -20,7 +20,8 @@ abstract project Directories is - type Platform_Type is ("i386", "x86_64", "ppc", "ppc64", "s390", "s390x", + type Platform_Type is ("i386", "x86_64", "ppc", "ppc64", "ppc64le", + "s390", "s390x", "sparc", "sparc64", "arm", "armv7l", "aarch64", "alpha", "ia64", "sh"); Hardware_Platform : Platform_Type := external ("HARDWARE_PLATFORM"); @@ -30,7 +31,7 @@ abstract project Directories is when "i386" | "ppc" | "s390" | "sparc" | "arm" | "armv7l" | "alpha" | "ia64" | "sh" => Lib := "lib"; - when "x86_64" | "ppc64" | "s390x" | "sparc64" | "aarch64" => + when "x86_64" | "ppc64" | "ppc64le" | "s390x" | "sparc64" | "aarch64" => Lib := "lib64"; end case; Libdir := "@exec_prefix@/" & Lib;