1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39:53 +03:00

Update BUILD_UNIX.md

Added a note on building on musl-based linux.
This commit is contained in:
thepyper 2018-08-08 15:14:18 +00:00 committed by GitHub
parent b0101cba28
commit e7d8d698a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,6 +57,21 @@ This will compile and install SoftEther VPN Server, Bridge and Client binaries u
If any error occurs, please check the above requirements.
# Build on musl-based linux
To build the programs from the source code when using musl as libc, run the following commands:
```bash
export USE_MUSL=YES
git clone https://github.com/SoftEtherVPN/SoftEtherVPN.git
git submodule init && git submodule update
cd SoftEtherVPN
./configure
make -C tmp
make -C tmp install
```
Building without USE_MUSL environment variable set compiles, but produced executabled exhibit bad run-time behaviour.
# How to Run SoftEther