go build -trimpath -ldflags "-w -s" -o <path> <package>
-trimpath
: stacktrace에서 go 파일 전체 절대 경로를 패키지 기준 상대경로로 변경
-ldflags "-w -s"
: stripped 출력물 생성, debugging 기능 제외
go build -trimpath -ldflags "-w -s" -o <path> <package>
-trimpath
: stacktrace에서 go 파일 전체 절대 경로를 패키지 기준 상대경로로 변경
-ldflags "-w -s"
: stripped 출력물 생성, debugging 기능 제외