Home
last modified time | relevance | path

Searched full:dll (Results 1 – 25 of 26) sorted by relevance

12

/lz4-3.4.0-2.7.6/lib/dll/example/
DREADME.md7 - `dll\liblz4.dll` : The DLL of LZ4 library
8 - `dll\liblz4.lib` : The import library of LZ4 library for Visual C++
31 Use `cd example` and `make` to build `fullbench-dll` and `fullbench-lib`.
32 `fullbench-dll` uses a dynamic LZ4 library from the `dll` directory.
36 #### Using LZ4 DLL with gcc/MinGW
38 The header files from `include\` and the dynamic library `dll\liblz4.dll`
41 It means that if a project that uses LZ4 consists of a single `test-dll.c`
42 file it should be linked with `dll\liblz4.dll`. For example:
44 gcc $(CFLAGS) -Iinclude\ test-dll.c -o test-dll dll\liblz4.dll
46 The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`.
[all …]
DMakefile29 DLLDIR := ../dll
47 .PHONY: default fullbench-dll fullbench-lib
52 all: fullbench-dll fullbench-lib
58 fullbench-dll: fullbench.c xxhash.c
59 $(CC) $(FLAGS) $^ -o $@$(EXT) -DLZ4_DLL_IMPORT=1 $(DLLDIR)/liblz4.dll
62 @$(RM) fullbench-dll$(EXT) fullbench-lib$(EXT) \
Dfullbench-dll.sln3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll.vcxproj", "{139…
Dfullbench-dll.vcxproj24 <RootNamespace>fullbench-dll</RootNamespace>
99 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
119 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
141 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
165 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
/lz4-3.4.0-2.7.6/lib/
DREADME.md100 #### Windows : using MinGW+MSYS to create DLL
102 DLL can be created using MinGW+MSYS with the `make liblz4` command.
103 This command creates `dll\liblz4.dll` and the import library `dll\liblz4.lib`.
110 `dll\liblz4.dll` are required to compile a project using gcc/MinGW.
112 It means that if a project that uses LZ4 consists of a single `test-dll.c`
113 file it should be linked with `dll\liblz4.dll`. For example:
115 $(CC) $(CFLAGS) -Iinclude/ test-dll.c -o test-dll dll\liblz4.dll
117 The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`.
DMakefile103 liblz4-dll.rc: liblz4-dll.rc.in
111 liblz4-dll.o: liblz4-dll.rc
112 $(WINDRES) -i liblz4-dll.rc -o liblz4-dll.o
114 $(LIBLZ4): $(SRCFILES) liblz4-dll.o
116 $(CC) $(FLAGS) -DLZ4_DLL_EXPORT=1 -shared $^ -o dll/$@.dll -Wl,--out-implib,dll/$(LIBLZ4_EXP)
137 $(RM) core *.o liblz4.pc dll/$(LIBLZ4).dll dll/$(LIBLZ4_EXP)
193 $(INSTALL_PROGRAM) dll/$(LIBLZ4).dll $(DESTDIR)$(bindir)
194 $(INSTALL_PROGRAM) dll/$(LIBLZ4_EXP) $(DESTDIR)$(libdir)
210 $(RM) $(DESTDIR)$(bindir)/$(LIBLZ4).dll
Dliblz4-dll.rc.in3 // DLL version information.
26 VALUE "OriginalFilename", "@LIBLZ4@.dll"
Dlz4.h81 * Enable exporting of functions when building a Windows DLL
112 LZ4LIB_API int LZ4_versionNumber (void); /**< library version number; useful to check dll version …
113 LZ4LIB_API const char* LZ4_versionString (void); /**< library version string; useful to check dll
Dlz4frame.h68 * Enable exporting of functions when building a Windows DLL
248 …d MUST be LZ4F_VERSION. It is intended to track potential version mismatch, notably when using DLL.
Dlz4hc.h305 * They should not be linked from DLL,
/lz4-3.4.0-2.7.6/build/
DREADME.md37 - `liblz4-dll` : A dynamic LZ4 library (DLL) compiled to `liblz4.dll` with the import library `libl…
38 - `fullbench-dll` : The fullbench program compiled with the import library; the executable requires…
41 #### Using LZ4 DLL with Microsoft Visual C++ project
54 The compiled executable will require LZ4 DLL which is available at
55 `build\VS2010\bin\$(Platform)_$(Configuration)\liblz4.dll`.
/lz4-3.4.0-2.7.6/
Dappveyor.yml62 MKDIR bin\dll bin\static bin\example bin\include &&
70 COPY lib\dll\* bin\dll\ &&
71 COPY lib\dll\example\Makefile bin\example\ &&
72 COPY lib\dll\example\fullbench-dll.* bin\example\ &&
73 COPY lib\dll\example\README.md bin\ &&
77 …7z.exe a -bb1 bin\lz4_x64.zip NEWS .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\sta…
81 …7z.exe a -bb1 bin\lz4_x86.zip NEWS .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\sta…
89 …ogramOptimization=true /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
93 …ration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
97 …ration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
[all …]
D.gitignore10 *.dll
DMakefile.inc43 LIBLZ4_EXP = liblz4.dll.a
DNEWS130 New liblz4-dll project, by Przemyslaw Skibinki
/lz4-3.4.0-2.7.6/build/VS2010/
Dlz4.sln5 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4-dll", "liblz4-dll\liblz4-dll.vcxproj", …
17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll\fullbench-dll.v…
/lz4-3.4.0-2.7.6/build/VS2010/liblz4-dll/
Dliblz4-dll.rc38 VALUE "InternalName", "lz4.dll"
40 VALUE "OriginalFilename", "lz4.dll"
Dliblz4-dll.vcxproj24 <RootNamespace>liblz4-dll</RootNamespace>
27 <ProjectName>liblz4-dll</ProjectName>
174 <ResourceCompile Include="liblz4-dll.rc" />
/lz4-3.4.0-2.7.6/build/VS2017/liblz4-dll/
Dliblz4-dll.rc38 VALUE "InternalName", "lz4.dll"
40 VALUE "OriginalFilename", "lz4.dll"
Dliblz4-dll.vcxproj24 <RootNamespace>liblz4-dll</RootNamespace>
27 <ProjectName>liblz4-dll</ProjectName>
178 <ResourceCompile Include="liblz4-dll.rc" />
/lz4-3.4.0-2.7.6/build/VS2017/
Dlz4.sln5 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4-dll", "liblz4-dll\liblz4-dll.vcxproj", …
17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll\fullbench-dll.v…
/lz4-3.4.0-2.7.6/tests/
DMakefile89 fullbench-dll: fullbench.c $(LZ4DIR)/xxhash.c
91 $(CC) $(FLAGS) $^ -o $@$(EXT) -DLZ4_DLL_IMPORT=1 $(LZ4DIR)/dll/$(LIBLZ4).dll
120 fullbench-dll$(EXT) fullbench-lib$(EXT) \
/lz4-3.4.0-2.7.6/build/VS2010/fullbench-dll/
Dfullbench-dll.vcxproj24 <RootNamespace>fullbench-dll</RootNamespace>
/lz4-3.4.0-2.7.6/build/VS2017/fullbench-dll/
Dfullbench-dll.vcxproj24 <RootNamespace>fullbench-dll</RootNamespace>
/lz4-3.4.0-2.7.6/doc/
Dlz4_manual.html53 <pre><b>int LZ4_versionNumber (void); </b>/**< library version number; useful to check dll version…
55 …har* LZ4_versionString (void); </b>/**< library version string; useful to check dll version */<b>

12