@@ -1050,6 +1050,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1109,6 +1121,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1168,6 +1192,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1227,6 +1263,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1286,6 +1334,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1345,6 +1405,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1404,6 +1476,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1463,6 +1547,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], | |||
@@ -1522,6 +1618,18 @@ | |||
"to": "include/" | |||
} | |||
}, | |||
{ | |||
"edit": { | |||
"edits": [ | |||
{ | |||
"content": "#pragma once\n\n// clang-format off\n\n/**\n * Header checks\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_SYS_MMAN_H 1\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_SYS_RANDOM_H 1\n#endif\n\n#if __has_include(<intrin.h>)\n #define HAVE_INTRIN_H 1\n#endif\n\n#if __has_include(<sys/auxv.h>)\n #define HAVE_SYS_AUXV_H 1\n#endif\n\n/**\n * Architectural checks for intrinsics\n */\n#if __has_include(<mmintrin.h>) && __MMX__\n #define HAVE_MMINTRIN_H 1\n#endif\n\n#if __has_include(<emmintrin.h>) && __SSE2__\n #define HAVE_EMMINTRIN_H 1\n#endif\n\n#if __SSE3__\n #if __has_include(<pmmintrin.h>)\n #define HAVE_PMMINTRIN_H 1\n #endif\n #if __has_include(<tmmintrin.h>)\n #define HAVE_TMMINTRIN_H 1\n #endif\n#endif\n\n#if __has_include(<smmintrin.h>) && __SSE4_1__\n #define HAVE_SMMINTRIN_H\n#endif\n\n#if __has_include(<immintrin.h>)\n #if __AVX__\n #define HAVE_AVXINTRIN_H\n #endif\n #if __AVX2__\n #define HAVE_AVX2INTRIN_H\n #endif\n #if __AVX512F__\n #if defined(__clang__) && __clang_major__ < 4\n // AVX512 may be broken\n #elif defined(__GNUC__) && __GNUC__ < 6\n // ''\n #else\n #define HAVE_AVX512FINTRIN_H\n #endif\n #endif\n#endif\n\n#if __has_include(<wmmintrin.h>) && __AES__\n #define HAVE_WMMINTRIN_H 1\n#endif\n\n#if __RDRND__\n #define HAVE_RDRAND\n#endif\n\n/**\n * Detect mman APIs\n */\n#if __has_include(<sys/mman.h>)\n #define HAVE_MMAP 1\n #define HAVE_MPROTECT 1\n #define HAVE_MLOCK 1\n\n #if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE)\n #define HAVE_MADVISE 1\n #endif\n#endif\n\n#if __has_include(<sys/random.h>)\n #define HAVE_GETRANDOM 1\n#endif\n\n/**\n * POSIX-Only stuff\n */\n#if __has_include(<unistd.h>)\n #if defined(_DEFAULT_SOURCE)\n #define HAVE_GETENTROPY 1\n #endif\n\n /**\n * Default POSIX APIs\n */\n #define HAVE_POSIX_MEMALIGN 1\n #define HAVE_GETPID 1\n #define HAVE_NANOSLEEP 1\n\n /**\n * Language/library features from C11\n */\n #if __STDC_VERSION__ >= 201112L\n #define HAVE_MEMSET_S 1\n #endif\n\n #if __linux__\n #define HAVE_EXPLICIT_BZERO 1\n #endif\n#endif\n\n/**\n * Miscellaneous\n */\n#if __has_include(<pthread.h>)\n #define HAVE_PTHREAD 1\n#endif\n\n#if __has_include(<sys/param.h>)\n #include <sys/param.h>\n #if __BYTE_ORDER == __BIG_ENDIAN\n #define NATIVE_BIG_ENDIAN 1\n #elif __BYTE_ORDER == __LITTLE_ENDIAN\n #define NATIVE_LITTLE_ENDIAN 1\n #else\n #error \"Unknown endianness for this platform.\"\n #endif\n#elif defined(_MSVC)\n // At time of writing, MSVC only targets little-endian.\n #define NATIVE_LITTLE_ENDIAN 1\n#else\n #error \"Unknown endianness for this platform.\"\n#endif\n\n#define CONFIGURED 1\n", | |||
"kind": "insert", | |||
"line": 1 | |||
} | |||
], | |||
"path": "include/sodium/private/common.h" | |||
} | |||
}, | |||
{ | |||
"copy": { | |||
"exclude": [], |
@@ -776,6 +776,17 @@ PACKAGES = [ | |||
kind='insert', | |||
content='#define SODIUM_STATIC 1') | |||
])), | |||
FSTransform( | |||
edit=EditTransform( | |||
path='include/sodium/private/common.h', | |||
edits=[ | |||
OneEdit( | |||
kind='insert', | |||
line=1, | |||
content=Path(__file__).parent.joinpath( | |||
'libsodium-config.h').read_text(), | |||
) | |||
])), | |||
FSTransform( | |||
copy=CopyMoveTransform( | |||
frm='builds/msvc/version.h', |
@@ -0,0 +1,141 @@ | |||
#pragma once | |||
// clang-format off | |||
/** | |||
* Header checks | |||
*/ | |||
#if __has_include(<sys/mman.h>) | |||
#define HAVE_SYS_MMAN_H 1 | |||
#endif | |||
#if __has_include(<sys/random.h>) | |||
#define HAVE_SYS_RANDOM_H 1 | |||
#endif | |||
#if __has_include(<intrin.h>) | |||
#define HAVE_INTRIN_H 1 | |||
#endif | |||
#if __has_include(<sys/auxv.h>) | |||
#define HAVE_SYS_AUXV_H 1 | |||
#endif | |||
/** | |||
* Architectural checks for intrinsics | |||
*/ | |||
#if __has_include(<mmintrin.h>) && __MMX__ | |||
#define HAVE_MMINTRIN_H 1 | |||
#endif | |||
#if __has_include(<emmintrin.h>) && __SSE2__ | |||
#define HAVE_EMMINTRIN_H 1 | |||
#endif | |||
#if __SSE3__ | |||
#if __has_include(<pmmintrin.h>) | |||
#define HAVE_PMMINTRIN_H 1 | |||
#endif | |||
#if __has_include(<tmmintrin.h>) | |||
#define HAVE_TMMINTRIN_H 1 | |||
#endif | |||
#endif | |||
#if __has_include(<smmintrin.h>) && __SSE4_1__ | |||
#define HAVE_SMMINTRIN_H | |||
#endif | |||
#if __has_include(<immintrin.h>) | |||
#if __AVX__ | |||
#define HAVE_AVXINTRIN_H | |||
#endif | |||
#if __AVX2__ | |||
#define HAVE_AVX2INTRIN_H | |||
#endif | |||
#if __AVX512F__ | |||
#if defined(__clang__) && __clang_major__ < 4 | |||
// AVX512 may be broken | |||
#elif defined(__GNUC__) && __GNUC__ < 6 | |||
// '' | |||
#else | |||
#define HAVE_AVX512FINTRIN_H | |||
#endif | |||
#endif | |||
#endif | |||
#if __has_include(<wmmintrin.h>) && __AES__ | |||
#define HAVE_WMMINTRIN_H 1 | |||
#endif | |||
#if __RDRND__ | |||
#define HAVE_RDRAND | |||
#endif | |||
/** | |||
* Detect mman APIs | |||
*/ | |||
#if __has_include(<sys/mman.h>) | |||
#define HAVE_MMAP 1 | |||
#define HAVE_MPROTECT 1 | |||
#define HAVE_MLOCK 1 | |||
#if defined(_DEFAULT_SOURCE) || defined(_BSD_SOURCE) | |||
#define HAVE_MADVISE 1 | |||
#endif | |||
#endif | |||
#if __has_include(<sys/random.h>) | |||
#define HAVE_GETRANDOM 1 | |||
#endif | |||
/** | |||
* POSIX-Only stuff | |||
*/ | |||
#if __has_include(<unistd.h>) | |||
#if defined(_DEFAULT_SOURCE) | |||
#define HAVE_GETENTROPY 1 | |||
#endif | |||
/** | |||
* Default POSIX APIs | |||
*/ | |||
#define HAVE_POSIX_MEMALIGN 1 | |||
#define HAVE_GETPID 1 | |||
#define HAVE_NANOSLEEP 1 | |||
/** | |||
* Language/library features from C11 | |||
*/ | |||
#if __STDC_VERSION__ >= 201112L | |||
#define HAVE_MEMSET_S 1 | |||
#endif | |||
#if __linux__ | |||
#define HAVE_EXPLICIT_BZERO 1 | |||
#endif | |||
#endif | |||
/** | |||
* Miscellaneous | |||
*/ | |||
#if __has_include(<pthread.h>) | |||
#define HAVE_PTHREAD 1 | |||
#endif | |||
#if __has_include(<sys/param.h>) | |||
#include <sys/param.h> | |||
#if __BYTE_ORDER == __BIG_ENDIAN | |||
#define NATIVE_BIG_ENDIAN 1 | |||
#elif __BYTE_ORDER == __LITTLE_ENDIAN | |||
#define NATIVE_LITTLE_ENDIAN 1 | |||
#else | |||
#error "Unknown endianness for this platform." | |||
#endif | |||
#elif defined(_MSVC) | |||
// At time of writing, MSVC only targets little-endian. | |||
#define NATIVE_LITTLE_ENDIAN 1 | |||
#else | |||
#error "Unknown endianness for this platform." | |||
#endif | |||
#define CONFIGURED 1 |