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