diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-05-13 13:54:49 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-05-13 13:54:49 +0300 |
commit | 42156b5190f4fa150e1fab6777eb81e69d4db8c9 (patch) | |
tree | 3bf47de81cf1f89892789535a036d2d55d93a136 /debian/patches/libgo-add-getrandom-mips-sparc.diff | |
download | gcc-6-debian.tar.gz |
Imported gcc-6 (6.3.0-17)debian/6.3.0-17debian
Diffstat (limited to 'debian/patches/libgo-add-getrandom-mips-sparc.diff')
-rw-r--r-- | debian/patches/libgo-add-getrandom-mips-sparc.diff | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/debian/patches/libgo-add-getrandom-mips-sparc.diff b/debian/patches/libgo-add-getrandom-mips-sparc.diff new file mode 100644 index 0000000..378e78c --- /dev/null +++ b/debian/patches/libgo-add-getrandom-mips-sparc.diff @@ -0,0 +1,67 @@ +# DP: Backport r240457 from trunk + +internal/syscall/unix: add getrandom syscall for MIPS and SPARC + +Reviewed-on: https://go-review.googlesource.com/29678 + +Index: b/src/libgo/go/internal/syscall/unix/getrandom_linux_mipso32.go +=================================================================== +--- a/src/libgo/go/internal/syscall/unix/getrandom_linux_mipso32.go (nonexistent) ++++ b/src/libgo/go/internal/syscall/unix/getrandom_linux_mipso32.go (revision 240457) +@@ -0,0 +1,11 @@ ++// Copyright 2016 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. ++ ++// +build mipso32 ++ ++package unix ++ ++// Linux getrandom system call number. ++// See GetRandom in getrandom_linux.go. ++const randomTrap uintptr = 4353 +Index: b/src/libgo/go/internal/syscall/unix/getrandom_linux_sparc.go +=================================================================== +--- a/src/libgo/go/internal/syscall/unix/getrandom_linux_sparc.go (nonexistent) ++++ b/src/libgo/go/internal/syscall/unix/getrandom_linux_sparc.go (revision 240457) +@@ -0,0 +1,11 @@ ++// Copyright 2016 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. ++ ++// +build sparc sparc64 ++ ++package unix ++ ++// Linux getrandom system call number. ++// See GetRandom in getrandom_linux.go. ++const randomTrap uintptr = 347 +Index: b/src/libgo/go/internal/syscall/unix/getrandom_linux_mips64x.go +=================================================================== +--- a/src/libgo/go/internal/syscall/unix/getrandom_linux_mips64x.go (revision 240456) ++++ b/src/libgo/go/internal/syscall/unix/getrandom_linux_mips64x.go (revision 240457) +@@ -2,7 +2,7 @@ + // Use of this source code is governed by a BSD-style + // license that can be found in the LICENSE file. + +-// +build mips64 mips64le ++// +build mips64 mips64le mipsn64 mipso64 + + package unix + +Index: b/src/libgo/go/internal/syscall/unix/getrandom_linux_mipsn32.go +=================================================================== +--- a/src/libgo/go/internal/syscall/unix/getrandom_linux_mipsn32.go (nonexistent) ++++ b/src/libgo/go/internal/syscall/unix/getrandom_linux_mipsn32.go (revision 240457) +@@ -0,0 +1,11 @@ ++// Copyright 2016 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. ++ ++// +build mipsn32 ++ ++package unix ++ ++// Linux getrandom system call number. ++// See GetRandom in getrandom_linux.go. ++const randomTrap uintptr = 6317 |