(ps when i say x86
i also mean x86_64
)
i'm working on a project that may be compiled for several different platforms, and i have some x86-specific files that should only be added when i'm compiling against x86 (as opposed to ARM or anything else)
basically looking for something like
IS_X86([
dnl compiling for x86
], [
dnl compiling for something other than x86
])
so.. how do i detect if i'm compiling for x86 in m4?
Edit: per the comments, this is apparently a GNU Autoconf solution, not a pure M4 solution (personally i barely know M4 and barely know Autoconf, i didn't even know this was autoconf-specific code)
here's what i came up with in the end.. seems to work, so unless anyone has a better suggestion,