andre@0: /* This Source Code Form is subject to the terms of the Mozilla Public andre@0: * License, v. 2.0. If a copy of the MPL was not distributed with this andre@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ andre@0: andre@0: /* andre@0: * A wrapper file for mpi_arm.c on iOS and Mac OS X. andre@0: * andre@0: * Xcode does not support target arch specific source files. This andre@0: * wrapper file allows Xcode to compile mpi_arm.c only when the andre@0: * target arch is arm. andre@0: */ andre@0: andre@0: #if !defined(__APPLE__) andre@0: #error This file is intended for iOS and Mac OS X only andre@0: #endif andre@0: andre@0: #if defined(__arm__) andre@0: #include "mpi_arm.c" andre@0: #endif