mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
14d8403a7b
Fixes build error ``` error "It looks like you're trying to enable vendor availability markup, but you haven't defined the corresponding macros yet!" ``` while trying to #include <__availability> header without having the necessary preprocessor directive `_LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS` set
22 lines
714 B
Diff
22 lines
714 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: sin-ack <sin-ack@users.noreply.github.com>
|
|
Date: Mon, 17 Jul 2023 03:26:04 +0300
|
|
Subject: [PATCH] build: Set Zig version to 0.12.0-dev.141+ddf5859c2
|
|
|
|
---
|
|
build | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/build b/build
|
|
index bf53f9ecca8fc15b9a80bd3c13b7c551f77979df..4b70377b43a35a1ba48ed50f1b29326798ab7c17 100755
|
|
--- a/build
|
|
+++ b/build
|
|
@@ -6,7 +6,7 @@ TARGET="$1" # Example: riscv64-linux-gnu
|
|
MCPU="$2" # Examples: `baseline`, `native`, `generic+v7a`, or `arm1176jzf_s`
|
|
|
|
ROOTDIR="$(pwd)"
|
|
-ZIG_VERSION="0.11.0"
|
|
+ZIG_VERSION="0.12.0-dev.141+ddf5859c2"
|
|
|
|
TARGET_OS_AND_ABI=${TARGET#*-} # Example: linux-gnu
|
|
|