macemu/SheepShaver/src/Unix/dyngen_precompiled/basic-dyngen-ops.hpp
Alexei Svitkine 5538376dc8 Add an Xcode 8 project for SheepShaver that builds an x86 32-bit
application (since 64-bit doesn't work with current OS X) and uses
pre-built (by GCC) compiler JIT source files.
2016-12-17 21:38:25 -05:00

8 lines
166 B
C++

#if defined(__x86_64__)
#include "basic-dyngen-ops-x86_64.hpp"
#elif defined(__i386__)
#include "basic-dyngen-ops-x86_32.hpp"
#else
#error Unknown platform
#endif