mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-17 08:17:29 -06:00
[chore]: Bump modernc.org/sqlite from 1.24.0 to 1.25.0 (#2114)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
de95f5f928
commit
7c65f1385d
122 changed files with 96210 additions and 40626 deletions
5
vendor/modernc.org/memory/Makefile
generated
vendored
5
vendor/modernc.org/memory/Makefile
generated
vendored
|
|
@ -2,7 +2,7 @@
|
|||
# Use of this source code is governed by a BSD-style
|
||||
# license that can be found in the LICENSE file.
|
||||
|
||||
.PHONY: all clean cover cpu editor internalError later mem nuke todo edit
|
||||
.PHONY: all clean cover cpu editor internalError later mem nuke todo edit build_all_targets
|
||||
|
||||
grep=--include=*.go --include=*.l --include=*.y --include=*.yy
|
||||
ngrep='TODOOK\|parser\.go\|scanner\.go\|.*_string\.go'
|
||||
|
|
@ -34,6 +34,8 @@ edit:
|
|||
|
||||
editor:
|
||||
gofmt -l -s -w *.go
|
||||
|
||||
build_all_targets:
|
||||
GOOS=darwin GOARCH=amd64 go build
|
||||
GOOS=darwin GOARCH=arm64 go build
|
||||
GOOS=freebsd GOARCH=386 go build
|
||||
|
|
@ -45,6 +47,7 @@ editor:
|
|||
GOOS=linux GOARCH=amd64 go build
|
||||
GOOS=linux GOARCH=arm go build
|
||||
GOOS=linux GOARCH=arm64 go build
|
||||
GOOS=linux GOARCH=loong64 go build
|
||||
GOOS=linux GOARCH=mips go build
|
||||
GOOS=linux GOARCH=mips64le go build
|
||||
GOOS=linux GOARCH=mipsle go build
|
||||
|
|
|
|||
4
vendor/modernc.org/memory/memory64.go
generated
vendored
4
vendor/modernc.org/memory/memory64.go
generated
vendored
|
|
@ -2,8 +2,8 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
//go:build amd64 || amd64p32 || arm64 || arm64be || mips64 || mips64le || mips64p32 || mips64p32le || ppc64 || ppc64le || sparc64 || riscv64
|
||||
// +build amd64 amd64p32 arm64 arm64be mips64 mips64le mips64p32 mips64p32le ppc64 ppc64le sparc64 riscv64
|
||||
//go:build amd64 || amd64p32 || arm64 || arm64be || mips64 || mips64le || mips64p32 || mips64p32le || ppc64 || ppc64le || sparc64 || riscv64 || loong64
|
||||
// +build amd64 amd64p32 arm64 arm64be mips64 mips64le mips64p32 mips64p32le ppc64 ppc64le sparc64 riscv64 loong64
|
||||
|
||||
package memory // import "modernc.org/memory"
|
||||
|
||||
|
|
|
|||
4
vendor/modernc.org/memory/mmap_linux_64.go
generated
vendored
4
vendor/modernc.org/memory/mmap_linux_64.go
generated
vendored
|
|
@ -2,9 +2,9 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE-GO file.
|
||||
|
||||
//go:build linux && (amd64 || arm64 || mips64 || mips64le || riscv64 || ppc64le)
|
||||
//go:build linux && (amd64 || arm64 || mips64 || mips64le || riscv64 || ppc64le || loong64)
|
||||
// +build linux
|
||||
// +build amd64 arm64 mips64 mips64le riscv64 ppc64le
|
||||
// +build amd64 arm64 mips64 mips64le riscv64 ppc64le loong64
|
||||
|
||||
package memory
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue