mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 05:48:40 +00:00
third party include fixups
This commit is contained in:
@@ -8,14 +8,14 @@
|
|||||||
#pragma warning (push, 0)
|
#pragma warning (push, 0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../third_party_ext/blake3/c/blake3_portable.c"
|
#include "third_party/blake3/c/blake3_portable.c"
|
||||||
|
|
||||||
#if defined(_M_AMD64) || defined(__x86_64__)
|
#if defined(_M_AMD64) || defined(__x86_64__)
|
||||||
|
|
||||||
#define round_fn sse2_round_fn
|
#define round_fn sse2_round_fn
|
||||||
#define compress_pre sse2_compress_pre
|
#define compress_pre sse2_compress_pre
|
||||||
|
|
||||||
#include "../third_party_ext/blake3/c/blake3_sse2.c"
|
#include "third_party/blake3/c/blake3_sse2.c"
|
||||||
|
|
||||||
#define loadu sse41_loadu
|
#define loadu sse41_loadu
|
||||||
#define storeu sse41_storeu
|
#define storeu sse41_storeu
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang attribute push(__attribute__((target("sse4.1"))), apply_to=function)
|
#pragma clang attribute push(__attribute__((target("sse4.1"))), apply_to=function)
|
||||||
#endif
|
#endif
|
||||||
#include "../third_party_ext/blake3/c/blake3_sse41.c"
|
#include "third_party/blake3/c/blake3_sse41.c"
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang attribute pop
|
#pragma clang attribute pop
|
||||||
#endif
|
#endif
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang attribute push(__attribute__((target("avx2"))), apply_to=function)
|
#pragma clang attribute push(__attribute__((target("avx2"))), apply_to=function)
|
||||||
#endif
|
#endif
|
||||||
#include "../third_party_ext/blake3/c/blake3_avx2.c"
|
#include "third_party/blake3/c/blake3_avx2.c"
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang attribute pop
|
#pragma clang attribute pop
|
||||||
#endif
|
#endif
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang attribute push(__attribute__((target("avx512f,avx512vl"))), apply_to=function)
|
#pragma clang attribute push(__attribute__((target("avx512f,avx512vl"))), apply_to=function)
|
||||||
#endif
|
#endif
|
||||||
#include "../third_party_ext/blake3/c/blake3_avx512.c"
|
#include "third_party/blake3/c/blake3_avx512.c"
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang attribute pop
|
#pragma clang attribute pop
|
||||||
#endif
|
#endif
|
||||||
@@ -88,11 +88,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__aarch64__) || defined(_M_ARM64)
|
#if defined(__aarch64__) || defined(_M_ARM64)
|
||||||
#include "../third_party_ext/blake3/c/blake3_neon.c"
|
#include "third_party/blake3/c/blake3_neon.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../third_party_ext/blake3/c/blake3_dispatch.c"
|
#include "third_party/blake3/c/blake3_dispatch.c"
|
||||||
#include "../third_party_ext/blake3/c/blake3.c"
|
#include "third_party/blake3/c/blake3.c"
|
||||||
|
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang diagnostic pop
|
#pragma clang diagnostic pop
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
# pragma clang diagnostic pop
|
# pragma clang diagnostic pop
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../third_party_ext/blake3/c/blake3.h"
|
#include "third_party/blake3/c/blake3.h"
|
||||||
|
|
||||||
static void
|
static void
|
||||||
blake3(void* out, size_t outlen, void* in, size_t inlen)
|
blake3(void* out, size_t outlen, void* in, size_t inlen)
|
||||||
|
|||||||
+5
-5
@@ -17,16 +17,16 @@
|
|||||||
|
|
||||||
#include "base_ext/base_blake3.h"
|
#include "base_ext/base_blake3.h"
|
||||||
#include "base_ext/base_blake3.c"
|
#include "base_ext/base_blake3.c"
|
||||||
#include "third_party_ext/md5/md5.c"
|
#include "third_party/md5/md5.c"
|
||||||
#include "third_party_ext/md5/md5.h"
|
#include "third_party/md5/md5.h"
|
||||||
#include "third_party_ext/xxHash/xxhash.c"
|
#include "third_party/xxHash/xxhash.c"
|
||||||
#include "third_party_ext/xxHash/xxhash.h"
|
#include "third_party/xxHash/xxhash.h"
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
#pragma warning(disable:4789)
|
#pragma warning(disable:4789)
|
||||||
#endif
|
#endif
|
||||||
#include "third_party_ext/radsort/radsort.h"
|
#include "third_party/radsort/radsort.h"
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user