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