Skip to content
Snippets Groups Projects
Unverified Commit f41a6c53 authored by Kali Kaneko's avatar Kali Kaneko
Browse files

[pkg] remove ldflags

parent 05398d4f
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ PKGFILES = $(shell find pkg -type f -name '*.go')
endif
lib/%.a: $(PKGFILES)
@./gui/build.sh --just-golib
@XBUILD=no ./gui/build.sh --just-golib
relink_vendor:
ifeq ($(VENDOR_PATH), providers)
......
......@@ -53,18 +53,20 @@ function buildGoLib {
if [ "$PLATFORM" == "Darwin" ]
then
GOOS=darwin
CC=clang
CGO_CFLAGS="-g -O2 -mmacosx-version-min=$OSX_TARGET"
CGO_LDFLAGS="-g -O2 -mmacosx-version-min=$OSX_TARGET"
fi
if [ "$PLATFORM" == "MINGW64_NT-10.0" ]
then
LDFLAGS="-H windowsgui"
CC=clang
CGO_CFLAGS="-g -O2 -mmacosx-version-min=$OSX_TARGET"
CGO_LDFLAGS="-g -O2 -mmacosx-version-min=$OSX_TARGET"
fi
#if [ "$PLATFORM" == "MINGW64_NT-10.0" ]
#then
# LDFLAGS="-H windowsgui"
#fi
if [ "$XBUILD" == "no" ]
then
echo "[+] Building Go library with standard Go compiler"
CGO_ENABLED=1 GOOS=$GOOS CC=$CC CGO_CFLAGS=$CGO_CFLAGS CGO_LDFLAGS=$CGO_LDFLAGS go build -ldflags $LDFLAGS -buildmode=c-archive -o $TARGET_GOLIB $SOURCE_GOLIB
CGO_ENABLED=1 GOOS=$GOOS CC=$CC CGO_CFLAGS=$CGO_CFLAGS CGO_LDFLAGS=$CGO_LDFLAGS go build -buildmode=c-archive -o $TARGET_GOLIB $SOURCE_GOLIB
fi
if [ "$XBUILD" == "$WIN64" ]
then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment