forked from mongodb/mongo-tools-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_goenv.sh
executable file
·106 lines (97 loc) · 3.41 KB
/
set_goenv.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/bin/bash
set_goenv() {
# Error out if not in the same directory as this script
if [ ! -f ./set_goenv.sh ]; then
echo "Must be run from mongo-tools-common top-level directory. Aborting."
return 1
fi
# Set OS-level default Go configuration
UNAME_S=$(PATH="/usr/bin:/bin" uname -s)
case $UNAME_S in
CYGWIN*)
PREF_GOROOT="c:/golang/go1.11"
PREF_PATH="/cygdrive/c/golang/go1.11/bin:/cygdrive/c/mingw-w64/x86_64-4.9.1-posix-seh-rt_v3-rev1/mingw64/bin:$PATH"
;;
*)
PREF_GOROOT="/opt/golang/go1.11"
# XXX might not need mongodbtoolchain anymore
PREF_PATH="$PREF_GOROOT/bin:/opt/mongodbtoolchain/v3/bin/:$PATH"
;;
esac
# Set OS-level compilation flags
case $UNAME_S in
'CYGWIN*')
export CGO_CFLAGS="-D_WIN32_WINNT=0x0601 -DNTDDI_VERSION=0x06010000"
;;
'Darwin')
export CGO_CFLAGS="-mmacosx-version-min=10.11"
export CGO_LDFLAGS="-mmacosx-version-min=10.11"
;;
esac
# XXX Setting the compiler might not be necessary anymore now that we're
# using standard Go toolchain and if we don't put mongodbtoolchain into the
# path. But if we need to keep mongodbtoolchain for other tools (eg. python),
# then this is probably still necessary to find the right gcc.
if [ -z "$CC" ]; then
UNAME_M=$(PATH="/usr/bin:/bin" uname -m)
case $UNAME_M in
aarch64)
export CC=/opt/mongodbtoolchain/v3/bin/aarch64-mongodb-linux-gcc
;;
ppc64le)
export CC=/opt/mongodbtoolchain/v3/bin/ppc64le-mongodb-linux-gcc
;;
s390x)
export CC=/opt/mongodbtoolchain/v3/bin/s390x-mongodb-linux-gcc
;;
*)
# Not needed for other architectures
;;
esac
fi
# If GOROOT is not set by the user, configure our preferred Go version and
# associated path if available or error.
if [ -z "$GOROOT" ]; then
if [ -d "$PREF_GOROOT" ]; then
export GOROOT="$PREF_GOROOT";
export PATH="$PREF_PATH";
else
echo "GOROOT not set and preferred GOROOT '$PREF_GOROOT' doesn't exist. Aborting."
return 1
fi
fi
# Derive GOPATH from current directory, but error if the current diretory
# doesn't look like a GOPATH structure.
if expr "$(pwd)" : '.*src/github.com/mongodb/mongo-tools-common$' > /dev/null; then
export GOPATH=$(echo $(pwd) | perl -pe 's{src/github.com/mongodb/mongo-tools-common}{}')
if expr "$UNAME_S" : 'CYGWIN' > /dev/null; then
export GOPATH=$(cygpath -w "$GOPATH")
fi
else
echo "Current path '$(pwd)' doesn't resemble a GOPATH-style path. Aborting.";
return 1
fi
return
}
print_ldflags() {
VersionStr="$(git describe)"
Gitspec="$(git rev-parse HEAD)"
importpath="github.com/mongodb/mongo-tools-common/options"
echo "-X ${importpath}.VersionStr=${VersionStr} -X ${importpath}.Gitspec=${Gitspec}"
}
print_tags() {
tags=""
if [ ! -z "$1" ]
then
tags="$@"
fi
UNAME_S=$(PATH="/usr/bin:/bin" uname -s)
case $UNAME_S in
Darwin)
if expr "$tags" : '.*ssl' > /dev/null ; then
tags="$tags openssl_pre_1.0"
fi
;;
esac
echo "$tags"
}