mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
985dfab2c4
This eliminates the possibility of inlining target failures for ondemand Also makes it so we always compile common architectures needed by simdjson.cpp in simdjson.h, since amalgamation has no way to reason about whether to include / exclude it.
19 lines
447 B
C
19 lines
447 B
C
#ifndef SIMDJSON_IMPLEMENTATIONS_H
|
|
#define SIMDJSON_IMPLEMENTATIONS_H
|
|
|
|
#include "simdjson/implementation-base.h"
|
|
|
|
SIMDJSON_PUSH_DISABLE_WARNINGS
|
|
SIMDJSON_DISABLE_UNDESIRED_WARNINGS
|
|
|
|
// Implementations
|
|
#include "simdjson/arm64.h"
|
|
#include "simdjson/haswell.h"
|
|
#include "simdjson/westmere.h"
|
|
#include "simdjson/ppc64.h"
|
|
#include "simdjson/fallback.h"
|
|
#include "simdjson/builtin.h"
|
|
|
|
SIMDJSON_POP_DISABLE_WARNINGS
|
|
|
|
#endif // SIMDJSON_IMPLEMENTATIONS_H
|