Goodbye, 32-bit

This commit is contained in:
starfrost013
2025-09-14 01:32:41 +01:00
parent 38806537fc
commit 57ae731e22
47 changed files with 30 additions and 18622 deletions

View File

@@ -72,7 +72,7 @@ Collection of ROMs for use with 86Box.
%autosetup -p1 -a1
%build
%ifarch i386 x86_64
%ifarch x86_64
%cmake -DRELEASE=on
%else
%ifarch arm aarch64

View File

@@ -1038,12 +1038,8 @@ monitor_thread(UNUSED(void *param))
# define EMU_GIT_HASH "0000000"
# endif
# if defined(__arm__) || defined(__TARGET_ARCH_ARM)
# define ARCH_STR "arm"
# elif defined(__aarch64__) || defined(_M_ARM64)
# if defined(__aarch64__) || defined(_M_ARM64)
# define ARCH_STR "arm64"
# elif defined(__i386) || defined(__i386__) || defined(_M_IX86)
# define ARCH_STR "i386"
# elif defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(_M_X64)
# define ARCH_STR "x86_64"
# else