diff options
author | Yann Collet <cyan@fb.com> | 2016-11-14 16:52:23 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2016-11-14 16:52:23 (GMT) |
commit | 84af32d491a23e2f160c215e53430c4a8b091cc9 (patch) | |
tree | 9d4cb100087798d6d3d6eab7107a3a06863fa3d0 /lib/README.md | |
parent | 5a5ebeec15d272b0b85aa2cef2a0da3dce920b80 (diff) | |
parent | 569897ddddd57c2fddfac49cdf561a2ea92e2c00 (diff) | |
download | lz4-84af32d491a23e2f160c215e53430c4a8b091cc9.zip lz4-84af32d491a23e2f160c215e53430c4a8b091cc9.tar.gz lz4-84af32d491a23e2f160c215e53430c4a8b091cc9.tar.bz2 |
Merge branch 'dev' of github.com:Cyan4973/lz4 into dev
Diffstat (limited to 'lib/README.md')
-rw-r--r-- | lib/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/README.md b/lib/README.md index 3ca2776..19f429a 100644 --- a/lib/README.md +++ b/lib/README.md @@ -40,13 +40,13 @@ It must be used with static linking ***only***. #### Using MinGW+MSYS to create DLL -DLL can be created using MinGW+MSYS with the "make liblz4" command. -This command creates "liblz4.dll" and the import library "liblz4.dll.a". +DLL can be created using MinGW+MSYS with the `make liblz4` command. +This command creates `liblz4.dll` and the import library `liblz4.dll.a`. To compile a project the import library has to be added to linking options. -It means that if a project that uses LZ4 consists of a single test-dll.c +It means that if a project that uses LZ4 consists of a single `test-dll.c` file it should be compiled with "liblz4.dll.a". For example: ``` - gcc $CFLAGS test-dll.c -o test-dll liblz4.dll.a + gcc $(CFLAGS) test-dll.c -o test-dll liblz4.dll.a ``` |