mirror of
https://github.com/scummvm/dockerized-bb.git
synced 2026-05-21 05:40:49 +00:00
ALL: Various toolchains updates
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
BUILDBOT_VERSION := 4.1.0
|
||||
BUILDBOT_VERSION := 4.2.0
|
||||
BUILDBOT_BASEDIR := buildbot-workdir
|
||||
|
||||
BOTTLE_VERSION := 0.13.2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
LHA_VERSION=4f193b1e98700aa2bc9dfeef11943efc1f036154
|
||||
LHA_VERSION=26b71be85a762098bdeb95f4533045c7dad86f31
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
SDL2_VERSION=2.30.5
|
||||
SDL2_VERSION=2.30.9
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
OBOE_VERSION=1.9.0
|
||||
OBOE_VERSION=1.9.3
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
CCTOOLS_PORT_VERSION=a2724f04cafe3590fbc3d0beacc37293d83a2177
|
||||
CCTOOLS_PORT_VERSION=81f205e8ca6bbf2fdbcb6948132454fd1f97839e
|
||||
export LDID_VERSION=4bf8f4d60384a0693dbbe2084ce62a35bfeb87ab
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#! /bin/sh
|
||||
|
||||
RCODESIGN_VERSION=0.27.0
|
||||
RCODESIGN_CHECKSUM=sha256:a0e0c548b313026abf4f40a6e06554d352c6f4e1add6a87d626c94134a4ee564
|
||||
RCODESIGN_VERSION=0.29.0
|
||||
RCODESIGN_CHECKSUM=sha256:dbe85cedd8ee4217b64e9a0e4c2aef92ab8bcaaa41f20bde99781ff02e600002
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
FLUIDSYNTH_VERSION=2.3.7
|
||||
FLUIDSYNTH_VERSION=2.4.1
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
LIBICONV_VERSION=1.17
|
||||
LIBICONV_VERSION=1.18
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
SONIVOX_VERSION=3.6.14
|
||||
SONIVOX_VERSION=3.6.15
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
diff --git a/arm-wt-22k/src/hostmm_ng.c b/arm-wt-22k/src/hostmm_ng.c
|
||||
index 3bb533c..34510be 100644
|
||||
--- a/arm-wt-22k/src/hostmm_ng.c
|
||||
+++ b/arm-wt-22k/src/hostmm_ng.c
|
||||
@@ -20,16 +20,16 @@
|
||||
/* Only for debugging LED, vibrate, and backlight functions */
|
||||
#include "eas_report.h"
|
||||
|
||||
-#if __has_include(<byteswap.h>)
|
||||
+#if defined(__GNUC__) || defined(__clang__)
|
||||
+#define bswap16 __builtin_bswap16
|
||||
+#define bswap32 __builtin_bswap32
|
||||
+#elif __has_include(<byteswap.h>)
|
||||
#include <byteswap.h>
|
||||
-#define bswap16 __bswap_16
|
||||
-#define bswap32 __bswap_32
|
||||
+#define bswap16 bswap_16
|
||||
+#define bswap32 bswap_32
|
||||
#elif defined(_MSC_VER)
|
||||
#define bswap16 _byteswap_ushort
|
||||
#define bswap32 _byteswap_ulong
|
||||
-#elif defined(__GNUC__) || defined(__clang__)
|
||||
-#define bswap16 __builtin_bswap16
|
||||
-#define bswap32 __builtin_bswap32
|
||||
#endif
|
||||
|
||||
const EAS_BOOL O32_BIG_ENDIAN =
|
||||
@@ -1,4 +1,4 @@
|
||||
m4_define(`DEVKITARM_VERSION',20240918)
|
||||
m4_define(`DEVKITARM_VERSION',20241111)
|
||||
# This version of devkitARM depends on a Debian Bullseye
|
||||
# For now it works with our version, we will have to ensure it stays like that
|
||||
FROM devkitpro/devkitarm:DEVKITARM_VERSION AS original-toolchain
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
m4_define(`DEVKITPPC_VERSION',20240702)
|
||||
m4_define(`DEVKITPPC_VERSION',20241116)
|
||||
# This version of devkitPPC depends on a Debian Bullseye
|
||||
# For now it works with our version, we will have to ensure it stays like that
|
||||
FROM devkitpro/devkitppc:DEVKITPPC_VERSION AS original-toolchain
|
||||
|
||||
@@ -117,7 +117,8 @@ helpers_package(giflib)
|
||||
# Ports package is not static anymore (since faad 2.11) due to build system change in upstream
|
||||
helpers_package(faad2)
|
||||
|
||||
ports_package(libmad)
|
||||
# Ports package is not static anymore (since mad 0.16.4) due to build system change in upstream
|
||||
helpers_package(libmad)
|
||||
|
||||
ports_package(libtheora)
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
m4_ifdef(`DEBIAN_RELEASE',,`m4_define(`DEBIAN_RELEASE',bookworm)')
|
||||
m4_ifdef(`DEBIAN_VERSION',,`m4_define(`DEBIAN_VERSION',20241016)')
|
||||
m4_ifdef(`DEBIAN_VERSION',,`m4_define(`DEBIAN_VERSION',20241202)')
|
||||
FROM toolchains/common AS helpers
|
||||
|
||||
FROM debian:DEBIAN_RELEASE-DEBIAN_VERSION-slim m4_ifdef(`STAGE_IMAGE_NAME',AS STAGE_IMAGE_NAME,)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
m4_define(`MXE_VERSION',333c94bd8f368efcde3f2f93179bc7a0d4359316)m4_dnl
|
||||
m4_define(`MXE_VERSION',7d72e7393fc286efb79944535fc58c2b8a4115c2)m4_dnl
|
||||
|
||||
m4_include(`paths.m4')m4_dnl
|
||||
m4_include(`packages.m4')m4_dnl
|
||||
|
||||
@@ -4,9 +4,9 @@ PKG := winsparkle
|
||||
$(PKG)_WEBSITE := https://winsparkle.org/
|
||||
$(PKG)_DESCR := WinSparkle
|
||||
$(PKG)_IGNORE :=
|
||||
$(PKG)_VERSION := 0.8.1
|
||||
$(PKG)_VERSION := 0.8.3
|
||||
$(PKG)_GH_CONF := vslavik/winsparkle/tags, v
|
||||
$(PKG)_CHECKSUM := 491612b0e817373ffcde03ad0d923f1e1885a231316e9e9c257e57b4e9dab4c5
|
||||
$(PKG)_CHECKSUM := a6e0052725e4caace57be5fcba82d82a90e3b97fe969686b6967f350838f2efc
|
||||
$(PKG)_SUBDIR := WinSparkle-$($(PKG)_VERSION)
|
||||
$(PKG)_FILE := WinSparkle-$($(PKG)_VERSION).zip
|
||||
$(PKG)_URL := https://github.com/vslavik/winsparkle/releases/download/v$($(PKG)_VERSION)/$($(PKG)_FILE)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
LIBRARIES_VERSION=82f7ead27aeb23f826f043aa7bcca5e5e3fbf3b8
|
||||
LIBRARIES_VERSION=98d06bce3a67656697f7f768550658f4b60c4cb8
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
PSP_PACKAGES_VERSION=dd17a8caccdd90b1e73ead5b5c7e91674061c59c
|
||||
PSP_PACKAGES_VERSION=755a1a6ed64ff0a72485fa1ae2aaeead7fb5fe55
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
#! /bin/sh
|
||||
|
||||
PSPDEV_VERSION=d1cf7efa52dda0aba11594a56da672e6ce8d909e
|
||||
export PSPTOOLCHAIN_VERSION=a420edb56fd5e63f21a043748b14ea2c7925bb48
|
||||
export PSPSDK_VERSION=4a03c9076f9fdd92e79cc898c06efd9b0ca781c1
|
||||
PSPDEV_VERSION=63224ff92288de28c386d78dd800f83f21d940af
|
||||
export PSPTOOLCHAIN_VERSION=7e2541df014480cd399a013240161e2592f30878
|
||||
export PSPSDK_VERSION=560b950687d2b061154ab576e2d152adc2abbf0e
|
||||
export PSPLINKUSB_VERSION=7d44fc10222df2d6f56d939ed4a15dc859651f4a
|
||||
export EBOOTSIGNER_VERSION=17d6386f034ac922f540ca78200961761b23ecae
|
||||
export PSPTOOLCHAIN_ALLEGREX_VERSION=e3e1bed110ff0b13f490873d0f83ecbff9cf27c7
|
||||
export PSPTOOLCHAIN_ALLEGREX_VERSION=4c017a930a85216051544de6db045a33f1a9d2cf
|
||||
export PSPTOOLCHAIN_EXTRA_VERSION=3c9aa25abb47bb861523c17977f080b3682cad62
|
||||
export BINUTILS_VERSION=982f4d2cb190f0bce06a98e7556b1b20a256d826
|
||||
export GCC_VERSION=e8ee3aae2b5896b618464d155ed89d869ed5b110
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
LIBICONV_VERSION=1.17
|
||||
LIBICONV_VERSION=1.18
|
||||
|
||||
PACKAGE_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
HELPERS_DIR=$PACKAGE_DIR/../..
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
m4_define(`ALPINE_VERSION',3.20.3)m4_dnl
|
||||
m4_define(`ALPINE_VERSION',3.21.0)m4_dnl
|
||||
FROM alpine:ALPINE_VERSION
|
||||
m4_define(`BASE_ALPINE',`')m4_dnl
|
||||
USER root
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
m4_ifdef(`DEBIAN_RELEASE',,`m4_define(`DEBIAN_RELEASE',bookworm)')
|
||||
m4_ifdef(`DEBIAN_VERSION',,`m4_define(`DEBIAN_VERSION',20241016)')
|
||||
m4_ifdef(`DEBIAN_VERSION',,`m4_define(`DEBIAN_VERSION',20241202)')
|
||||
m4_define(`BASE_DEBIAN',`')m4_dnl
|
||||
FROM debian:DEBIAN_RELEASE-DEBIAN_VERSION-slim
|
||||
USER root
|
||||
|
||||
Reference in New Issue
Block a user