Compare commits

..

2 Commits

Author SHA1 Message Date
xbzk 4696ef1963 [loader] external zbic + code tweaks + ci workarounds 2026-09-26 15:48:20 -03:00
xbzk 79d1927d63 [loader] external zbic + code tweaks 2026-09-26 12:35:29 -03:00
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ add_library(
set_source_files_properties(zbic_compression.cpp PROPERTIES
INCLUDE_DIRECTORIES "${ZBIC_INCLUDE_DIR}"
COMPILE_OPTIONS "$<$<CXX_COMPILER_ID:Clang,GNU>:-Wno-unused-function>")
COMPILE_OPTIONS "$<$<CXX_COMPILER_ID:Clang,GNU>:-Wno-unused-function;-Wno-missing-declarations;-Wno-shadow>")
if(WIN32)
target_sources(common PRIVATE windows/timer_resolution.cpp
+6
View File
@@ -12,8 +12,14 @@
#define ZSTDERRORLIB_HIDDEN static
#undef ZSTD_MULTITHREAD
#if defined(__ANDROID__)
#undef _GNU_SOURCE
#endif
#include "zstd.h"
#define g_ZSTD_threading_useless_symbol g_ZSTD_zbic_threading_useless_symbol
#include "zstd.c"
#undef g_ZSTD_threading_useless_symbol
namespace Common::Compression {