internal/glfw: Update Dockerfile and regenerate DLLs

This commit is contained in:
Hajime Hoshi 2021-04-17 19:37:56 +09:00
parent c8ed6ec12e
commit 855edcd2ff
9 changed files with 9 additions and 6 deletions

1
go.mod
View File

@ -13,6 +13,7 @@ require (
github.com/jfreymuth/oggvorbis v1.0.3
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
golang.org/x/mobile v0.0.0-20210220033013-bdb1ca9a1e08
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57
golang.org/x/tools v0.1.0
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect

1
go.sum
View File

@ -51,6 +51,7 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 h1:SQFwaSi55rU7vdNs9Yr0Z324VNlrF+0wMqRXT4St8ck=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

View File

@ -1,9 +1,10 @@
FROM debian:testing
# For the version of gcc-mingw-w64, see https://packages.debian.org/bullseye/gcc-mingw-w64-x86-64
RUN apt-get update && apt-get install -y \
ca-certificates \
golang \
gcc-mingw-w64=10.1.0-3+23 \
gcc-mingw-w64=10.2.1-6+24.1 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /work

View File

@ -1 +1 @@
docker run --rm --volume $(pwd)/../..:/work $(docker build -q .) /bin/bash -c "cd ./internal/glfw; go run gen.go"
docker run --rm --volume $(pwd)/../..:/work $(docker build -q . | head -n1) /bin/sh -c "cd ./internal/glfw; go run gen.go"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2,4 +2,4 @@
package glfw
const glfwDLLHash = "acab6665ea9a1e855eaa0a7e6cb56b8c3a252240e8cf829c99ba2f094cc969c9"
const glfwDLLHash = "757fe85fcdb46e92da9256bffb1c0838472821e069c26b743c07a801df38504c"

View File

@ -2,4 +2,4 @@
package glfw
const glfwDLLHash = "cc243593fabeb8a7a12f189a588504628b1b97cbc0be8366e15327230e8ef733"
const glfwDLLHash = "de55a18e5ffe69870a244951d2aca066d891af7c89c321865c701e82b015c9f5"

0
tools.go Normal file
View File