
$ ldd gocryptfs not a dynamic executable $ file gocryptfs gocryptfs: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped
9 lines
105 B
Bash
Executable File
9 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
export CGO_ENABLED=0
|
|
exec ./build.bash -tags without_openssl
|