59623aa
/* Header file switcher for the C interface.  -*- C -*-
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_c-x86_64.h"
59623aa
#elif defined(__i386__)
59623aa
#include "ppl_c-i386.h"
Brent Baude c52d688
#elif defined(__powerpc64__) 
Brent Baude c52d688
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
59623aa
#include "ppl_c-ppc64.h"
Brent Baude c52d688
#else
Brent Baude c52d688
#include "ppl_c-ppc64le.h"
Brent Baude c52d688
#endif
59623aa
#elif defined(__powerpc__)
59623aa
#include "ppl_c-ppc.h"
59623aa
#elif defined(__ia64__)
59623aa
#include "ppl_c-ia64.h"
59623aa
#elif defined(__alpha__)
59623aa
#include "ppl_c-alpha.h"
59623aa
#elif defined(__arm__)
59623aa
#include "ppl_c-arm.h"
59623aa
#elif defined(__s390x__)
59623aa
#include "ppl_c-s390x.h"
59623aa
#elif defined(__s390__)
59623aa
#include "ppl_c-s390.h"
2947a1b
#elif defined(__sh__)
2947a1b
#include "ppl_c-sh.h"
2947a1b
#elif defined(__sparc__) && defined(__arch64__)
2947a1b
#include "ppl_c-sparc64.h"
2947a1b
#elif defined(__sparc__)
2947a1b
#include "ppl_c-sparc.h"
59623aa
#else
59623aa
#error "This architecture is not supported by the currently installed ppl-devel packages."
59623aa
#endif