| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
fixes #8043
|
| |
|
|
|
|
| |
(cherry picked from commit b5f0896153bb6ab8a9da807641feb62b83a7f422)
|
|
|
|
|
|
|
|
|
| |
The external linker for ppc64le was pointing to /lib64/ld-musl-ppc64le.so.1
but the valid path for alpine ppc64le is /lib/ld-musl-powerpc64le.so.1.
This issue was found by Lynn Boger from IBM go compiler team.
(cherry picked from commit 80d3e2de0e7ec8f262ab4e39553062a81758f703)
|
| |
|
|
|
|
| |
set-external-linker.patch adresses golang/go#18243
|
|
|
|
|
|
|
|
| |
Go package build was disabled on ppc64le because it was missing go-bootstrap dependency.
As the last version of go-bootstrap (1.4) is not available for ppc64le, I cross-compiled
it and uploaded it to: ftp://ftp.unicamp.br/pub/ppc64el/alpine/go-bootstrap/
The go-bootstrap is now installed in build-edge-ppc64le and can compile the go package.
|
| |
|
| |
|
|
|
|
|
|
| |
Now that go-bootstrap can be the bootstrap package (for x86*) or
the real go package, search for the right bootstrap go directory
to use. This also adds s390x arch mapping.
|
|
|
|
|
|
|
| |
This enables Go to compile itself with previous Go build. Should
improve build times. More importantly, this is prerequisite to get
the cross compilation makedependencies right. Support for cross-compiling
Go to new arches is due out soon.
|
|
|
|
| |
ref #6788
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
fixes #6072
|
|
|
|
|
|
|
| |
we need the arm bootstrap binary explicitly in source so abuild does not
complain about the extra checksum.
also remove paxmark from makedepends as its no longer used.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Fixes x86 build errors. vet removed from external tools as
it is part of main go package now.
|
| |
|
|
|
|
| |
we also need to disable RANDEXEC
|
|
|
|
|
| |
this works around problem when building docker
https://github.com/golang/go/issues/16081
|
|
|
|
|
| |
In order to be able to use the stringer tool within go-based packages I
have added it to the list of the go-tools subpackage.
|
| |
|
|
|
|
|
|
|
|
| |
This fixes time zone lookups using the `time.LoadLocation` function by
ensuring that the time zone database distributed with Go
($GOROOT/lib/time/zoneinfo.zip) is installed. You can find more
information about this file here:
https://golang.org/pkg/time/#LoadLocation
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Including patch to fix 386 build.
https://github.com/golang/go/issues/14476
Removed default-sc-getpw-r-size-max.patch, fixed upstream.
https://github.com/golang/go/issues/11319
Changed the offset for no-pic.patch to match new code.
TT: pkgrel set to 1 as the original pkgrel=0 failed to build
with x86 and was reverted.
|
|
|
|
|
| |
We had 1.6.0, but reverted it. This caused go to be rebuilt with
same version, which can confuse http proxies.
|
|
|
|
|
|
| |
This reverts commit e81049956f7cd1251ef6ec8e90c487c7c2bda99b.
Does not work on x86 yet.
|
| |
|
| |
|
|
|
|
| |
Prefix it with the package name.
|
| |
|
|
|
|
|
|
|
|
|
| |
Previously you could only access them using `go tool <toolname>`
however, some software expects to find vet, godoc, et cetera in your
$PATH.
Regarding godoc we manually make it accessible via `go tool <toolname>`
as well, which isn't the default and might be dropped in the future.
|
|
|