-
Notifications
You must be signed in to change notification settings - Fork 1k
Building from source
- Minimum requirement is go 1.13+
- Building on a non-Android OS: You cannot build the android version without following this guide first.
- Building on Android: You cannot build for an android/arch different to your device's, nor can you build for Linux/any arch. Windows with any arch seems to work however.
- Building for AMD Geode: compiling Go code on CPUs without the SSE instruction set requires a specific build of the Go compiler itself. See here for more information.
Windows: Install git and go. Or use chocolatey:
choco install git golang
Now open a Powershell window (Win+X > Windows Powershell).
Linux: Open a terminal window, install git and go:
<pkg-install-command> git golang
Android: Install Termux and start it. Then install git and go:
pkg install git golang
mkdir dnscrypt-proxy-src
cd dnscrypt-proxy-src
Must be cloned into a folder called src
.
git clone https://github.com/jedisct1/dnscrypt-proxy src
GOOS
and GOARCH
don't need to be set if you're only building for your current OS install, they're already set to the right values (see go env GOOS GOARCH
). Otherwise, possible values can be found here. You may also want to set GOARM
when using GOARCH=arm
, see GoArm wiki.
# Windows
$env:GOOS='windows'
$env:GOARCH='amd64'
# Linux
export GOOS=linux
export GOARCH=amd64
# Android
export GOOS=android
export GOARCH=arm64 (or: export GOARCH=arm; export GOARM=7)
# AMD Geode (for linux, but can be changed as per GOOS parameter) - More information here: https://github.com/rhy-ama/Geode-linux-go
export GOOS=linux
export GOARCH=386
export GO386=387
Change the output path as appropriate for your OS/arch.
cd src/dnscrypt-proxy
go build -ldflags="-s -w" -mod vendor
The binary should be inside in the current directory.
You will need root to access it directly (or even use dnscrypt-proxy). Otherwise, you can try copying it to internal storage.
In somecases if you want to run dnscrypt-proxy as a non-root user you'll get the error "[FATAL] listen udp 0.0.0.0:53: bind: permission denied"
to solve this problem you can run the following command and allow dnscrypt to have access to a low level port :
sudo setcap cap_net_bind_service=+ep $(which dnscrypt-proxy)
- Home
- Installation
- Configuration
- Checking that your DNS traffic is encrypted
- Automatic Updates
- Server sources
- Combining blocklists
- Public Blocklist and other configuration files
- Building from source
- Run your own DNSCrypt server in under 10 minutes
- DNS stamps specifications
- Windows Tips
- dnscrypt-proxy in the media
- Planned Features