9c7c797
/*
9c7c797
 * Kluge to support multilib installation of both 32- and 64-bit RPMS:
9c7c797
 * we need to arrange that header files that appear in both RPMs are
9c7c797
 * identical.  Hence, this file is architecture-independent and calls
9c7c797
 * in an arch-dependent file that will appear in just one RPM.
9c7c797
 *
9c7c797
 * To avoid breaking arches not explicitly supported by Red Hat, we
9c7c797
 * use this indirection file *only* on known multilib arches.
9c7c797
 *
9c7c797
 * Note: this may well fail if user tries to use gcc's -I- option.
9c7c797
 * But that option is deprecated anyway.
9c7c797
 */
9c7c797
#if defined(__x86_64__)
9c7c797
#include "my_config_x86_64.h"
9c7c797
#elif defined(__i386__)
9c7c797
#include "my_config_i386.h"
9c7c797
#elif defined(__ppc64__) || defined(__powerpc64__)
9c7c797
#include "my_config_ppc64.h"
9c7c797
#elif defined(__ppc__) || defined(__powerpc__)
9c7c797
#include "my_config_ppc.h"
9c7c797
#elif defined(__s390x__)
9c7c797
#include "my_config_s390x.h"
9c7c797
#elif defined(__s390__)
9c7c797
#include "my_config_s390.h"
9c7c797
#elif defined(__sparc__) && defined(__arch64__)
9c7c797
#include "my_config_sparc64.h"
9c7c797
#elif defined(__sparc__)
9c7c797
#include "my_config_sparc.h"
e7892da
#elif defined(__arm__)
e7892da
#include "my_config_arm.h"
e7892da
#elif defined(__aarch64__)
e7892da
#include "my_config_aarch64.h"
9c7c797
#endif