damn
July 29, 2024, 3:04pm
1
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
Admin
August 1, 2024, 5:16am
2
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).
damn
August 1, 2024, 2:17pm
3
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.