$81 GRAYBYTE WORDPRESS FILE MANAGER $56

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/lib/golang/src/

HOME
Current File : /lib/golang/src//buildall.bash
#!/usr/bin/env bash
# Copyright 2015 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# Usage: buildall.bash [-e] [pattern]
#
# buildall.bash builds the standard library for all Go-supported
# architectures.
#
# Originally the Go build system used it as a smoke test to quickly
# flag portability issues in builders named "misc-compile" or "all-compile".
# As of CL 464955, the build system uses make.bash -compile-only instead,
# so this script no longer runs in any automated fashion.
#
# Options:
#   -e: stop at first failure

if [ ! -f run.bash ]; then
	echo 'buildall.bash must be run from $GOROOT/src' 1>&2
	exit 1
fi

sete=false
if [ "$1" = "-e" ]; then
	sete=true
	shift
fi

if [ "$sete" = true ]; then
	set -e
fi

pattern="$1"
if [ "$pattern" = "" ]; then
	pattern=.
fi

./make.bash || exit 1
GOROOT="$(cd .. && pwd)"

gettargets() {
	../bin/go tool dist list | sed -e 's|/|-|' |
		grep -E -v '^(android|ios)' # need C toolchain even for cross-compiling
	echo linux-arm-arm5
}

selectedtargets() {
	gettargets | grep -E "$pattern"
}

# put linux first in the target list to get all the architectures up front.
linux_targets() {
	selectedtargets | grep 'linux' | sort
}

non_linux_targets() {
	selectedtargets | grep -v 'linux' | sort
}

# Note words in $targets are separated by both newlines and spaces.
targets="$(linux_targets) $(non_linux_targets)"

failed=false
for target in $targets
do
	echo ""
	echo "### Building $target"
	export GOOS=$(echo $target | sed 's/-.*//')
	export GOARCH=$(echo $target | sed 's/.*-//')
	unset GOARM
	if [ "$GOARCH" = "arm5" ]; then
		export GOARCH=arm
		export GOARM=5
	fi

	# Build and vet everything.
	# cmd/go/internal/work/exec.go enables the same vet flags during go test of std cmd
	# and should be kept in sync with any vet flag changes here.
	if ! "$GOROOT/bin/go" build std cmd || ! "$GOROOT/bin/go" vet -unsafeptr=false std cmd; then
		failed=true
		if $sete; then
			exit 1
		fi
	fi
done

if [ "$failed" = "true" ]; then
	echo "" 1>&2
	echo "Build(s) failed." 1>&2
	exit 1
fi

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
16 Dec 2025 9.30 PM
root / root
0755
archive
--
4 Dec 2025 6.06 PM
root / root
0755
arena
--
16 Dec 2025 9.30 PM
root / root
0755
bufio
--
16 Dec 2025 9.30 PM
root / root
0755
builtin
--
16 Dec 2025 9.30 PM
root / root
0755
bytes
--
16 Dec 2025 9.30 PM
root / root
0755
cmd
--
16 Dec 2025 9.30 PM
root / root
0755
cmp
--
16 Dec 2025 9.30 PM
root / root
0755
compress
--
4 Dec 2025 6.06 PM
root / root
0755
container
--
4 Dec 2025 6.06 PM
root / root
0755
context
--
16 Dec 2025 9.30 PM
root / root
0755
crypto
--
16 Dec 2025 9.30 PM
root / root
0755
database
--
4 Dec 2025 6.06 PM
root / root
0755
debug
--
4 Dec 2025 6.06 PM
root / root
0755
embed
--
16 Dec 2025 9.30 PM
root / root
0755
encoding
--
16 Dec 2025 9.30 PM
root / root
0755
errors
--
16 Dec 2025 9.30 PM
root / root
0755
expvar
--
16 Dec 2025 9.30 PM
root / root
0755
flag
--
16 Dec 2025 9.30 PM
root / root
0755
fmt
--
16 Dec 2025 9.30 PM
root / root
0755
go
--
4 Dec 2025 6.06 PM
root / root
0755
hash
--
16 Dec 2025 9.30 PM
root / root
0755
html
--
16 Dec 2025 9.30 PM
root / root
0755
image
--
16 Dec 2025 9.30 PM
root / root
0755
index
--
4 Dec 2025 6.06 PM
root / root
0755
internal
--
16 Dec 2025 9.30 PM
root / root
0755
io
--
16 Dec 2025 9.30 PM
root / root
0755
iter
--
16 Dec 2025 9.30 PM
root / root
0755
log
--
16 Dec 2025 9.30 PM
root / root
0755
maps
--
16 Dec 2025 9.30 PM
root / root
0755
math
--
16 Dec 2025 9.30 PM
root / root
0755
mime
--
16 Dec 2025 9.30 PM
root / root
0755
net
--
16 Dec 2025 9.34 PM
root / root
0755
os
--
16 Dec 2025 9.30 PM
root / root
0755
path
--
16 Dec 2025 9.30 PM
root / root
0755
plugin
--
16 Dec 2025 9.30 PM
root / root
0755
reflect
--
16 Dec 2025 9.30 PM
root / root
0755
regexp
--
16 Dec 2025 9.30 PM
root / root
0755
runtime
--
16 Dec 2025 9.34 PM
root / root
0755
slices
--
16 Dec 2025 9.30 PM
root / root
0755
sort
--
16 Dec 2025 9.30 PM
root / root
0755
strconv
--
16 Dec 2025 9.30 PM
root / root
0755
strings
--
16 Dec 2025 9.30 PM
root / root
0755
structs
--
16 Dec 2025 9.30 PM
root / root
0755
sync
--
16 Dec 2025 9.30 PM
root / root
0755
syscall
--
16 Dec 2025 9.30 PM
root / root
0755
testing
--
16 Dec 2025 9.30 PM
root / root
0755
text
--
4 Dec 2025 6.06 PM
root / root
0755
time
--
16 Dec 2025 9.30 PM
root / root
0755
unicode
--
16 Dec 2025 9.30 PM
root / root
0755
unique
--
16 Dec 2025 9.30 PM
root / root
0755
unsafe
--
16 Dec 2025 9.30 PM
root / root
0755
vendor
--
16 Dec 2025 9.30 PM
root / root
0755
weak
--
16 Dec 2025 9.30 PM
root / root
0755
Make.dist
0.54 KB
4 Dec 2025 6.06 PM
root / root
0644
README.vendor
2.372 KB
4 Dec 2025 6.06 PM
root / root
0644
all.bash
0.369 KB
4 Dec 2025 6.06 PM
root / root
0755
all.bat
0.379 KB
4 Dec 2025 6.06 PM
root / root
0644
all.rc
0.382 KB
4 Dec 2025 6.06 PM
root / root
0755
bootstrap.bash
2.251 KB
4 Dec 2025 6.06 PM
root / root
0755
buildall.bash
2.075 KB
4 Dec 2025 6.06 PM
root / root
0755
clean.bash
0.506 KB
4 Dec 2025 6.06 PM
root / root
0755
clean.bat
0.464 KB
4 Dec 2025 6.06 PM
root / root
0644
clean.rc
0.371 KB
4 Dec 2025 6.06 PM
root / root
0755
cmp.bash
1.456 KB
4 Dec 2025 6.06 PM
root / root
0644
go.mod
0.256 KB
4 Dec 2025 6.06 PM
root / root
0644
go.sum
1.025 KB
4 Dec 2025 6.06 PM
root / root
0644
make.bash
7.443 KB
4 Dec 2025 6.06 PM
root / root
0755
make.bat
4.011 KB
4 Dec 2025 6.06 PM
root / root
0644
make.rc
3.747 KB
4 Dec 2025 6.06 PM
root / root
0755
race.bash
0.938 KB
4 Dec 2025 6.06 PM
root / root
0755
race.bat
0.626 KB
4 Dec 2025 6.06 PM
root / root
0644
run.bash
1.676 KB
4 Dec 2025 6.06 PM
root / root
0755
run.bat
0.479 KB
4 Dec 2025 6.06 PM
root / root
0644
run.rc
0.396 KB
4 Dec 2025 6.06 PM
root / root
0755

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF