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;