-
Notifications
You must be signed in to change notification settings - Fork 356
/
set_goenv.sh
executable file
·76 lines (68 loc) · 2.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
#!/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 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.21"
PREF_PATH="/cygdrive/c/golang/go1.21/bin:/cygdrive/c/mingw-w64/x86_64-4.9.1-posix-seh-rt_v3-rev1/mingw64/bin:$PATH"
;;
*)
PREF_GOROOT="/opt/golang/go1.21"
PREF_PATH="$PREF_GOROOT/bin:$PATH"
;;
esac
# Set OS-level compilation flags
case $UNAME_S in
CYGWIN*)
export CGO_CFLAGS="-D_WIN32_WINNT=0x0601 -DNTDDI_VERSION=0x06010000"
export GOCACHE="C:/windows/temp"
;;
Darwin)
export CGO_CFLAGS="-mmacosx-version-min=10.11"
export CGO_LDFLAGS="-mmacosx-version-min=10.11"
;;
esac
# On s390x, the Go toolchain relies on s390x-linux-gnu-gcc which isn't set up.
# Temporarily rely on the mongodbtoolchain for compilation on s390x.
if [ -z "$CC" ]; then
UNAME_M=$(PATH="/usr/bin:/bin" uname -m)
case $UNAME_M in
s390x)
export CC=/usr/bin/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 directory
# doesn't look like a GOPATH structure.
if expr "$(pwd)" : '.*src/github.com/mongodb/mongo-tools$' > /dev/null; then
export GOPATH=$(echo $(pwd) | perl -pe 's{src/github.com/mongodb/mongo-tools}{}')
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
export PATH="$PATH:$GOPATH/bin"
return
}