diff options
| author | 2022-11-28 11:19:39 +0100 | |
|---|---|---|
| committer | 2022-11-28 11:19:39 +0100 | |
| commit | daf44ac2b709922512cfee3cde686b84b4868775 (patch) | |
| tree | 2967df466f8d4515d32c05cf520ba3e7a19d4fae /vendor/modernc.org/cc/v3 | |
| parent | [chore]: Bump codeberg.org/gruf/go-store/v2 from 2.0.9 to 2.0.10 (#1160) (diff) | |
| download | gotosocial-daf44ac2b709922512cfee3cde686b84b4868775.tar.xz | |
[chore] Bump database dependencies (#1164)
github.com/uptrace/bun v1.1.8 -> v1.1.9
github.com/uptrace/bun/pgdialect v1.1.8 -> v1.1.9
github.com/uptrace/bun/sqlitedialect v1.1.8 -> v1.1.9
modernc.org/sqlite v1.18.2 -> v1.19.5
Diffstat (limited to 'vendor/modernc.org/cc/v3')
| -rw-r--r-- | vendor/modernc.org/cc/v3/Makefile | 3 | ||||
| -rw-r--r-- | vendor/modernc.org/cc/v3/abi_platforms.go | 102 |
2 files changed, 104 insertions, 1 deletions
diff --git a/vendor/modernc.org/cc/v3/Makefile b/vendor/modernc.org/cc/v3/Makefile index f021342e3..3664010d2 100644 --- a/vendor/modernc.org/cc/v3/Makefile +++ b/vendor/modernc.org/cc/v3/Makefile @@ -64,6 +64,7 @@ build_all_targets: GOOS=freebsd GOARCH=386 go build -v ./... GOOS=freebsd GOARCH=amd64 go build -v ./... GOOS=freebsd GOARCH=arm go build -v ./... + GOOS=freebsd GOARCH=arm64 go build -v ./... GOOS=linux GOARCH=386 go build -v ./... GOOS=linux GOARCH=amd64 go build -v ./... GOOS=linux GOARCH=arm go build -v ./... @@ -73,8 +74,10 @@ build_all_targets: GOOS=linux GOARCH=s390x go build -v ./... GOOS=netbsd GOARCH=amd64 go build -v ./... GOOS=netbsd GOARCH=arm go build -v ./... + GOOS=netbsd GOARCH=386 go build -v ./... GOOS=openbsd GOARCH=amd64 go build -v ./... GOOS=openbsd GOARCH=arm64 go build -v ./... + GOOS=openbsd GOARCH=386 go build -v ./... GOOS=windows GOARCH=386 go build -v ./... GOOS=windows GOARCH=amd64 go build -v ./... GOOS=windows GOARCH=arm64 go build -v ./... diff --git a/vendor/modernc.org/cc/v3/abi_platforms.go b/vendor/modernc.org/cc/v3/abi_platforms.go index 537657193..99850172d 100644 --- a/vendor/modernc.org/cc/v3/abi_platforms.go +++ b/vendor/modernc.org/cc/v3/abi_platforms.go @@ -16,6 +16,7 @@ var ( abiSignedChar = map[[2]string]bool{ {"freebsd", "arm"}: false, + {"freebsd", "arm64"}: false, {"linux", "arm"}: false, {"linux", "arm64"}: false, {"linux", "ppc64le"}: false, @@ -25,11 +26,13 @@ var ( {"darwin", "amd64"}: true, {"darwin", "arm64"}: true, - {"freebsd", "amd64"}: true, {"freebsd", "386"}: true, + {"freebsd", "amd64"}: true, {"linux", "386"}: true, {"linux", "amd64"}: true, + {"netbsd", "386"}: true, {"netbsd", "amd64"}: true, + {"openbsd", "386"}: true, {"openbsd", "amd64"}: true, {"openbsd", "arm64"}: true, {"windows", "386"}: true, @@ -414,6 +417,38 @@ var abiTypes = map[[2]string]map[Kind]ABIType{ Int128: {16, 16, 16}, UInt128: {16, 16, 16}, }, + // gcc (FreeBSD Ports Collection) 11.3.0 + {"freebsd", "arm64"}: { + Void: {1, 1, 1}, + Bool: {1, 1, 1}, + Char: {1, 1, 1}, + SChar: {1, 1, 1}, + UChar: {1, 1, 1}, + Short: {2, 2, 2}, + UShort: {2, 2, 2}, + Enum: {4, 4, 4}, + Int: {4, 4, 4}, + UInt: {4, 4, 4}, + Long: {8, 8, 8}, + ULong: {8, 8, 8}, + LongLong: {8, 8, 8}, + ULongLong: {8, 8, 8}, + Ptr: {8, 8, 8}, + Function: {8, 8, 8}, + Float: {4, 4, 4}, + Double: {8, 8, 8}, + LongDouble: {16, 16, 16}, + Int8: {1, 1, 1}, + UInt8: {1, 1, 1}, + Int16: {2, 2, 2}, + UInt16: {2, 2, 2}, + Int32: {4, 4, 4}, + UInt32: {4, 4, 4}, + Int64: {8, 8, 8}, + UInt64: {8, 8, 8}, + Int128: {16, 16, 16}, + UInt128: {16, 16, 16}, + }, // gcc (FreeBSD Ports Collection) 10.3.0 {"freebsd", "386"}: { Void: {1, 1, 1}, @@ -548,6 +583,36 @@ var abiTypes = map[[2]string]map[Kind]ABIType{ Int128: {16, 16, 16}, UInt128: {16, 16, 16}, }, + // OpenBSD clang version 13.0.0 + {"openbsd", "386"}: { + Void: {1, 1, 1}, + Bool: {1, 1, 1}, + Char: {1, 1, 1}, + SChar: {1, 1, 1}, + UChar: {1, 1, 1}, + Short: {2, 2, 2}, + UShort: {2, 2, 2}, + Enum: {4, 4, 4}, + Int: {4, 4, 4}, + UInt: {4, 4, 4}, + Long: {4, 4, 4}, + ULong: {4, 4, 4}, + LongLong: {8, 4, 4}, + ULongLong: {8, 4, 4}, + Ptr: {4, 4, 4}, + Function: {4, 4, 4}, + Float: {4, 4, 4}, + Double: {8, 4, 4}, + LongDouble: {12, 4, 4}, + Int8: {1, 1, 1}, + UInt8: {1, 1, 1}, + Int16: {2, 2, 2}, + UInt16: {2, 2, 2}, + Int32: {4, 4, 4}, + UInt32: {4, 4, 4}, + Int64: {8, 4, 4}, + UInt64: {8, 4, 4}, + }, // gcc (GCC) 10.3.0 {"netbsd", "amd64"}: { Void: {1, 1, 1}, @@ -610,6 +675,41 @@ var abiTypes = map[[2]string]map[Kind]ABIType{ Int64: {8, 8, 8}, UInt64: {8, 8, 8}, }, + // gcc (nb4 20200810) 7.5.0 + {"netbsd", "386"}: { + Void: {1, 1, 1}, + Bool: {1, 1, 1}, + Char: {1, 1, 1}, + SChar: {1, 1, 1}, + UChar: {1, 1, 1}, + Short: {2, 2, 2}, + UShort: {2, 2, 2}, + Enum: {4, 4, 4}, + Int: {4, 4, 4}, + UInt: {4, 4, 4}, + Long: {4, 4, 4}, + ULong: {4, 4, 4}, + LongLong: {8, 4, 4}, + ULongLong: {8, 4, 4}, + Ptr: {4, 4, 4}, + Function: {4, 4, 4}, + Float: {4, 4, 4}, + Double: {8, 4, 4}, + LongDouble: {12, 4, 4}, + Int8: {1, 1, 1}, + UInt8: {1, 1, 1}, + Int16: {2, 2, 2}, + UInt16: {2, 2, 2}, + Int32: {4, 4, 4}, + UInt32: {4, 4, 4}, + Int64: {8, 4, 4}, + UInt64: {8, 4, 4}, + Float32: {4, 4, 4}, + Float32x: {8, 4, 4}, + Float64: {8, 4, 4}, + Float64x: {12, 4, 4}, + Float128: {16, 16, 16}, + }, // gcc (Ubuntu 11.2.0-7ubuntu2) 11.2.0 {"linux", "riscv64"}: { Void: {1, 1, 1}, |
