mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
Make main compilation chunks into .cpp files
This commit is contained in:
+17
-2
@@ -5,7 +5,22 @@ SIMDJSON_DISABLE_UNDESIRED_WARNINGS
|
||||
|
||||
#include "error.cpp"
|
||||
#include "implementation.cpp"
|
||||
#include "stage1_find_marks.cpp"
|
||||
#include "stage2_build_tape.cpp"
|
||||
|
||||
#if SIMDJSON_IMPLEMENTATION_ARM64
|
||||
#include "arm64/stage1.cpp"
|
||||
#include "arm64/stage2.cpp"
|
||||
#endif
|
||||
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
||||
#include "fallback/stage1.cpp"
|
||||
#include "fallback/stage2.cpp"
|
||||
#endif
|
||||
#if SIMDJSON_IMPLEMENTATION_HASWELL
|
||||
#include "haswell/stage1.cpp"
|
||||
#include "haswell/stage2.cpp"
|
||||
#endif
|
||||
#if SIMDJSON_IMPLEMENTATION_WESTMERE
|
||||
#include "westmere/stage1.cpp"
|
||||
#include "westmere/stage2.cpp"
|
||||
#endif
|
||||
|
||||
SIMDJSON_POP_DISABLE_WARNINGS
|
||||
|
||||
Reference in New Issue
Block a user