Skip to content

Commit 600d475

Browse files
AbhishekAbhishek
authored andcommitted
fix: segmentation fault crash
the segmentation fault is due to upx compression of the binary issue with upx mentioned in upx/upx#612
1 parent ccaa30a commit 600d475

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ build/ported-linux_amd64: ${SRCS} ${GEN_SRCS}
1313
upx $@
1414
build/ported-darwin: ${SRCS} ${GEN_SRCS}
1515
GOOS=darwin GOARCH=amd64 go build -ldflags "${LDFLAGS}" -o $@ ${SRCS} ${GEN_SRCS}
16-
upx $@
1716

1817
ported_all:
1918
cd ./porter; $(MAKE) all
@@ -29,4 +28,4 @@ clean:
2928
rm -f build/ported-*
3029
@echo ""
3130
@echo "Removing porter binaries..."
32-
cd ./porter; $(MAKE) clean
31+
cd ./porter; $(MAKE) clean

0 commit comments

Comments
 (0)