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