Skip to content

Commit

Permalink
Update USAGE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ied206 committed Jan 27, 2022
1 parent 2acd7ba commit 71a576c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ ManagedWimLib comes with sets of binaries of `wimlib 1.13.4`. They will be copie
| Windows x86 | `$(OutDir)\runtimes\win-x86\native\libwim-15.dll` | LGPLv3 |
| Windows x64 | `$(OutDir)\runtimes\win-x64\native\libwim-15.dll` | LGPLv3 |
| Windows arm64 | `$(OutDir)\runtimes\win-arm64\native\libwim-15.dll` | LGPLv3 |
| Ubuntu 18.04 x64 | `$(OutDir)\runtimes\linux-x64\native\libwim.so` | LGPLv3 (w/o NTFS-3G) |
| Debian 10 armhf | `$(OutDir)\runtimes\linux-arm\native\libwim.so` | LGPLv3 (w/o NTFS-3G) |
| Debian 10 arm64 | `$(OutDir)\runtimes\linux-arm64\native\libwim.so` | LGPLv3 (w/o NTFS-3G) |
| macOS 10.15 x64 | `$(OutDir)\runtimes\osx-x64\native\libwim.dylib` | LGPLv3 (w/o NTFS-3G) |
| Ubuntu 20.04 x64 | `$(OutDir)\runtimes\linux-x64\native\libwim.so` | LGPLv3 (w/o NTFS-3G) |
| Debian 11 armhf | `$(OutDir)\runtimes\linux-arm\native\libwim.so` | LGPLv3 (w/o NTFS-3G) |
| Debian 11 arm64 | `$(OutDir)\runtimes\linux-arm64\native\libwim.so` | LGPLv3 (w/o NTFS-3G) |
| macOS Big Sur x64 | `$(OutDir)\runtimes\osx-x64\native\libwim.dylib` | LGPLv3 (w/o NTFS-3G) |

- Linux binaries are not portable. Included binaires may not work on your distribution.
- On Linux, wimlib depends on system-installed `libfuse`.
Expand All @@ -120,15 +120,15 @@ ManagedWimLib comes with sets of binaries of `wimlib 1.13.4`. They will be copie

#### Build Command

| Platform | Binary Source | Dependency |
|------------------|---------------------------------------------------------------------------------------|-----------------|
| Windows x86 | [Official Release](https://wimlib.net/downloads/wimlib-1.13.3-windows-i686-bin.zip) | - |
| Windows x64 | [Official Release](https://wimlib.net/downloads/wimlib-1.13.3-windows-x86_64-bin.zip) | - |
| Windows arm64 | Compile with MSYS2 and llvm-mingw | - |
| Ubuntu 18.04 x64 | Compile with libxml2 dependency | libfuse |
| Debian 10 armhf | Compile with libxml2 dependency | libfuse |
| Debian 10 arm64 | Compile with libxml2 dependency | libfuse |
| macOS 10.15 | Compile with libxml2 dependency | - |
| Platform | Binary Source | Dependency |
|-------------------|---------------------------------------------------------------------------------------|-----------------|
| Windows x86 | [Official Release](https://wimlib.net/downloads/wimlib-1.13.3-windows-i686-bin.zip) | - |
| Windows x64 | [Official Release](https://wimlib.net/downloads/wimlib-1.13.3-windows-x86_64-bin.zip) | - |
| Windows arm64 | Compile with MSYS2 and llvm-mingw | - |
| Ubuntu 20.04 x64 | Compile with libxml2 dependency | libfuse |
| Debian 11 armhf | Compile with libxml2 dependency | libfuse |
| Debian 11 arm64 | Compile with libxml2 dependency | libfuse |
| macOS Big Sur x64 | Compile with libxml2 dependency | - |

### Custom binary

Expand Down
2 changes: 1 addition & 1 deletion native/posix/static-wimlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ make clean
./configure --disable-static \
PKG_CONFIG_PATH="${PKGCONF_DIR}" \
CPPFLAGS="-I${LIB_PREFIX}/include" LDFLAGS="-L${LIB_PREFIX}/lib" \
--without-libcrypto --without-fuse --without-ntfs-3g ${EXTRA_ARGS}
--without-libcrypto --without-ntfs-3g ${EXTRA_ARGS}
make "-j${CORES}"
cp ".libs/${DEST_LIB}" "${DEST_DIR}"
popd > /dev/null
Expand Down

0 comments on commit 71a576c

Please sign in to comment.