About the inability to encrypt statically compiled files in Linux

I used golang to compile the binary file, but it prompted me: “file golangfile has an unsupported subsystemp”

My compilation syntax is

export CGO_ENABLED=1
export GOOS=linux
export GOARCH=amd64
export CC=/usr/local/musl/bin/musl-gcc

go build -ldflags '-w -s -extldflags "-static" -buildid=' -o golang-Linux-x64 main.go

Unfortunatrelty VMProtect doesn’t support Linux binaries without import table (Golang uses direct SYSCALLs for calling of APis instead of calling of imported APIs from DLLs).

OK, thank you for your answer. Do you have any plans to support this feature in the future? Because statically compiled programs are more common.

Fixed in the 2138 build.