44b363
/* Provide a real file - not a symlink - as it would cause multiarch conflicts 
44b363
   (when multiple different arch releases are installed simultaneously. */
44b363
44b363
#if defined __x86_64__
44b363
# include "vpx_config-x86_64.h"
44b363
#elif defined __aarch64__
44b363
# include "vpx_config-aarch64.h"
44b363
#elif defined __arm__
44b363
# include "vpx_config-arm.h"
44b363
#elif defined __i386__
44b363
# include "vpx_config-x86.h"
44b363
#elif defined __powerpc64__
44b363
# include "vpx_config-ppc64.h"
44b363
#elif defined __s390__
44b363
# include "vpx_config-s390.h"
44b363
#else
44b363
# error "Unsupported arch"
44b363
#endif