Sha256: 37598a2c16767d6fe7587df2abcd5cc081294996f5632852a3704018fb86329e

Contents?: true

Size: 903 Bytes

Versions: 1

Compression:

Stored size: 903 Bytes

Contents

// Written in 2017 by Henrik Steffen Gaßmann henrik@gassmann.onl
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to the
// public domain worldwide. This software is distributed without any warranty.
//
// You should have received a copy of the CC0 Public Domain Dedication
// along with this software. If not, see
//
//     http://creativecommons.org/publicdomain/zero/1.0/
//
////////////////////////////////////////////////////////////////////////////////

// ARM 64-Bit
#if defined(__aarch64__)
#error ##arch=arm64##

// ARM 32-Bit
#elif defined(__arm__) \
    || defined(_M_ARM)
#error ##arch=arm##

// x86 64-Bit
#elif defined(__x86_64__) \
    || defined(_M_X64)
#error ##arch=x64##

// x86 32-Bit
#elif defined(__i386__) \
    || defined(_M_IX86)
#error ##arch=x86##

#else
#error ##arch=unknown##
#endif

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ob64-0.5.0 vendor/libbase64/cmake/test-arch.c