59623aa
/* This is the header file switcher of the Parma Polyhedra Library.
ddb5035
   Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
ddb5035
   Copyright (C) 2010-2011 BUGSENG srl (http://bugseng.com)
59623aa
59623aa
This file is part of the Parma Polyhedra Library (PPL).
59623aa
59623aa
The PPL is free software; you can redistribute it and/or modify it
59623aa
under the terms of the GNU General Public License as published by the
59623aa
Free Software Foundation; either version 3 of the License, or (at your
59623aa
option) any later version.
59623aa
59623aa
The PPL is distributed in the hope that it will be useful, but WITHOUT
59623aa
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
59623aa
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
59623aa
for more details.
59623aa
59623aa
You should have received a copy of the GNU General Public License
59623aa
along with this program; if not, write to the Free Software Foundation,
59623aa
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.
59623aa
59623aa
For the most up-to-date information see the Parma Polyhedra Library
59623aa
site: http://www.cs.unipr.it/ppl/ . */
59623aa
59623aa
#if defined(__x86_64__)
59623aa
#include "ppl-x86_64.hh"
59623aa
#elif defined(__i386__)
59623aa
#include "ppl-i386.hh"
Brent Baude c52d688
#elif defined(__powerpc64__) 
Brent Baude c52d688
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
59623aa
#include "ppl-ppc64.hh"
Brent Baude c52d688
#else
Brent Baude c52d688
#include "ppl-ppc64le.hh"
Brent Baude c52d688
#endif
59623aa
#elif defined(__powerpc__)
59623aa
#include "ppl-ppc.hh"
59623aa
#elif defined(__ia64__)
59623aa
#include "ppl-ia64.hh"
59623aa
#elif defined(__alpha__)
59623aa
#include "ppl-alpha.hh"
59623aa
#elif defined(__arm__)
59623aa
#include "ppl-arm.hh"
4493a48
#elif defined(__aarch64__)
4493a48
#include "ppl-aarch64.hh"
59623aa
#elif defined(__s390x__)
59623aa
#include "ppl-s390x.hh"
59623aa
#elif defined(__s390__)
59623aa
#include "ppl-s390.hh"
2947a1b
#elif defined(__sh__)
2947a1b
#include "ppl-sh.hh"
2947a1b
#elif defined(__sparc__) && defined(__arch64__)
2947a1b
#include "ppl-sparc64.hh"
2947a1b
#elif defined(__sparc__)
2947a1b
#include "ppl-sparc.hh"
59623aa
#else
59623aa
#error "This architecture is not supported by the currently installed ppl-devel packages."
59623aa
#endif