mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-09 13:45:26 +02:00
Bump Go to 1.23
We need this because Go < 1.23 produces binaries that dont work on modern OpenBSD because OpenBSD decided to remove syscall() from their libc. Mad buggers, who removes functions from libc breaking all binaries!! Also increase minimum macOS version to 11.0 as Go 1.23 requires that
This commit is contained in:
@@ -29,13 +29,13 @@ void FUNC(xor_data64)(const uint8_t key[64] UNUSED, uint8_t* data UNUSED, const
|
||||
// Boilerplate {{{
|
||||
START_IGNORE_DIAGNOSTIC("-Wfloat-conversion")
|
||||
START_IGNORE_DIAGNOSTIC("-Wpedantic")
|
||||
#if defined(__clang__) && __clang_major__ > 12
|
||||
#if defined(__clang__) && __clang_major__ > 13
|
||||
_Pragma("clang diagnostic push")
|
||||
_Pragma("clang diagnostic ignored \"-Wbitwise-instead-of-logical\"")
|
||||
#endif
|
||||
#include <simde/x86/avx2.h>
|
||||
#include <simde/arm/neon.h>
|
||||
#if defined(__clang__) && __clang_major__ > 12
|
||||
#if defined(__clang__) && __clang_major__ > 13
|
||||
_Pragma("clang diagnostic pop")
|
||||
#endif
|
||||
END_IGNORE_DIAGNOSTIC
|
||||
|
||||
Reference in New Issue
Block a user