Search found 2 matches

by damn
Thu Aug 01, 2024 2:17 pm
Forum: Technical questions
Topic: About the inability to encrypt statically compiled files in Linux
Replies: 3
Views: 5457

Re: About the inability to encrypt statically compiled files in Linux

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.
by damn
Mon Jul 29, 2024 3:04 pm
Forum: Technical questions
Topic: About the inability to encrypt statically compiled files in Linux
Replies: 3
Views: 5457

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" ...