mirror of
https://github.com/facebook/zstd.git
synced 2025-10-10 00:03:36 -04:00
Merge pull request #1531 from terrelln/appveyorTest
Fixes for Windows release
This commit is contained in:
commit
a36d9302ce
@ -151,8 +151,7 @@ ifneq (,$(filter Windows%,$(OS)))
|
|||||||
LIBZSTD = dll\libzstd.dll
|
LIBZSTD = dll\libzstd.dll
|
||||||
$(LIBZSTD): $(ZSTD_FILES)
|
$(LIBZSTD): $(ZSTD_FILES)
|
||||||
@echo compiling dynamic library $(LIBVER)
|
@echo compiling dynamic library $(LIBVER)
|
||||||
@$(CC) $(FLAGS) -DZSTD_DLL_EXPORT=1 -shared $^ -o $@
|
$(CC) $(FLAGS) -DZSTD_DLL_EXPORT=1 -Wl,--out-implib,dll\libzstd.lib -shared $^ -o $@
|
||||||
dlltool -D $@ -d dll\libzstd.def -l dll\libzstd.lib
|
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
|
@ -6,14 +6,15 @@ COPY programs\datagen.h bin\example\
|
|||||||
COPY programs\util.h bin\example\
|
COPY programs\util.h bin\example\
|
||||||
COPY programs\platform.h bin\example\
|
COPY programs\platform.h bin\example\
|
||||||
COPY lib\common\mem.h bin\example\
|
COPY lib\common\mem.h bin\example\
|
||||||
COPY lib\common\zstd_errors.h bin\example\
|
|
||||||
COPY lib\common\zstd_internal.h bin\example\
|
COPY lib\common\zstd_internal.h bin\example\
|
||||||
COPY lib\common\error_private.h bin\example\
|
COPY lib\common\error_private.h bin\example\
|
||||||
COPY lib\common\xxhash.h bin\example\
|
COPY lib\common\xxhash.h bin\example\
|
||||||
COPY lib\zstd.h bin\include\
|
|
||||||
COPY lib\libzstd.a bin\static\libzstd_static.lib
|
COPY lib\libzstd.a bin\static\libzstd_static.lib
|
||||||
COPY lib\dll\libzstd.* bin\dll\
|
COPY lib\dll\libzstd.* bin\dll\
|
||||||
COPY lib\dll\example\Makefile bin\example\
|
COPY lib\dll\example\Makefile bin\example\
|
||||||
COPY lib\dll\example\fullbench-dll.* bin\example\
|
COPY lib\dll\example\fullbench-dll.* bin\example\
|
||||||
COPY lib\dll\example\README.md bin\
|
COPY lib\dll\example\README.md bin\
|
||||||
|
COPY lib\zstd.h bin\include\
|
||||||
|
COPY lib\common\zstd_errors.h bin\include\
|
||||||
|
COPY lib\dictBuilder\zdict.h bin\include\
|
||||||
COPY programs\zstd.exe bin\zstd.exe
|
COPY programs\zstd.exe bin\zstd.exe
|
||||||
|
@ -1,87 +0,0 @@
|
|||||||
LIBRARY libzstd.dll
|
|
||||||
EXPORTS
|
|
||||||
ZDICT_getDictID
|
|
||||||
ZDICT_getErrorName
|
|
||||||
ZDICT_isError
|
|
||||||
ZDICT_trainFromBuffer
|
|
||||||
ZSTD_CStreamInSize
|
|
||||||
ZSTD_CStreamOutSize
|
|
||||||
ZSTD_DStreamInSize
|
|
||||||
ZSTD_DStreamOutSize
|
|
||||||
ZSTD_adjustCParams
|
|
||||||
ZSTD_checkCParams
|
|
||||||
ZSTD_compress
|
|
||||||
ZSTD_compressBegin
|
|
||||||
ZSTD_compressBegin_advanced
|
|
||||||
ZSTD_compressBegin_usingDict
|
|
||||||
ZSTD_compressBlock
|
|
||||||
ZSTD_compressBound
|
|
||||||
ZSTD_compressCCtx
|
|
||||||
ZSTD_compressContinue
|
|
||||||
ZSTD_compressEnd
|
|
||||||
ZSTD_compressStream
|
|
||||||
ZSTD_compress_advanced
|
|
||||||
ZSTD_compress_usingCDict
|
|
||||||
ZSTD_compress_usingDict
|
|
||||||
ZSTD_copyCCtx
|
|
||||||
ZSTD_copyDCtx
|
|
||||||
ZSTD_createCCtx
|
|
||||||
ZSTD_createCCtx_advanced
|
|
||||||
ZSTD_createCDict
|
|
||||||
ZSTD_createCDict_advanced
|
|
||||||
ZSTD_createCStream
|
|
||||||
ZSTD_createCStream_advanced
|
|
||||||
ZSTD_createDCtx
|
|
||||||
ZSTD_createDCtx_advanced
|
|
||||||
ZSTD_createDDict
|
|
||||||
ZSTD_createDStream
|
|
||||||
ZSTD_createDStream_advanced
|
|
||||||
ZSTD_decompress
|
|
||||||
ZSTD_decompressBegin
|
|
||||||
ZSTD_decompressBegin_usingDict
|
|
||||||
ZSTD_decompressBlock
|
|
||||||
ZSTD_decompressContinue
|
|
||||||
ZSTD_decompressDCtx
|
|
||||||
ZSTD_decompressStream
|
|
||||||
ZSTD_decompress_usingDDict
|
|
||||||
ZSTD_decompress_usingDict
|
|
||||||
ZSTD_endStream
|
|
||||||
ZSTD_estimateCCtxSize
|
|
||||||
ZSTD_estimateDCtxSize
|
|
||||||
ZSTD_flushStream
|
|
||||||
ZSTD_freeCCtx
|
|
||||||
ZSTD_freeCDict
|
|
||||||
ZSTD_freeCStream
|
|
||||||
ZSTD_freeDCtx
|
|
||||||
ZSTD_freeDDict
|
|
||||||
ZSTD_freeDStream
|
|
||||||
ZSTD_getBlockSizeMax
|
|
||||||
ZSTD_getCParams
|
|
||||||
ZSTD_getDecompressedSize
|
|
||||||
ZSTD_findDecompressedSize
|
|
||||||
ZSTD_getFrameContentSize
|
|
||||||
ZSTD_getErrorName
|
|
||||||
ZSTD_getFrameParams
|
|
||||||
ZSTD_getParams
|
|
||||||
ZSTD_initCStream
|
|
||||||
ZSTD_initCStream_advanced
|
|
||||||
ZSTD_initCStream_usingCDict
|
|
||||||
ZSTD_initCStream_usingDict
|
|
||||||
ZSTD_initDStream
|
|
||||||
ZSTD_initDStream_usingDDict
|
|
||||||
ZSTD_initDStream_usingDict
|
|
||||||
ZSTD_insertBlock
|
|
||||||
ZSTD_isError
|
|
||||||
ZSTD_isFrame
|
|
||||||
ZSTD_maxCLevel
|
|
||||||
ZSTD_nextInputType
|
|
||||||
ZSTD_nextSrcSizeToDecompress
|
|
||||||
ZSTD_resetCStream
|
|
||||||
ZSTD_resetDStream
|
|
||||||
ZSTD_sizeof_CCtx
|
|
||||||
ZSTD_sizeof_CDict
|
|
||||||
ZSTD_sizeof_CStream
|
|
||||||
ZSTD_sizeof_DCtx
|
|
||||||
ZSTD_sizeof_DDict
|
|
||||||
ZSTD_sizeof_DStream
|
|
||||||
ZSTD_versionNumber
|
|
Loading…
x
Reference in New Issue
Block a user