Skip to content

Instantly share code, notes, and snippets.

@pboling
Created March 11, 2025 18:18
Show Gist options
  • Save pboling/24e8f13e8406cc9c31507dcc93eabac9 to your computer and use it in GitHub Desktop.
Save pboling/24e8f13e8406cc9c31507dcc93eabac9 to your computer and use it in GitHub Desktop.
asdf install Ruby 3.0.7 on Mac Silicon
RUBY_APPLY_PATCHES=ruby-3-0-7-arm64.patch ASDF_RUBY_BUILD_VERSION=master asdf install ruby 3.0.7
From 1dfe75b0beb7171b8154ff0856d5149be0207724 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <[email protected]>
Date: Tue, 6 Jul 2021 00:14:58 +0900
Subject: [PATCH] Fixed 'maybe_unused' attribute
```
../../../src/ext/bigdecimal/bigdecimal.c:303:5: error: 'maybe_unused' attribute cannot be applied to types
ENTER(1);
^
```
---
ext/bigdecimal/bigdecimal.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index 704f04510e4b43..65e7c864e2b8fb 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -62,7 +62,11 @@ static ID id_eq;
static ID id_half;
/* MACRO's to guard objects from GC by keeping them in stack */
+#ifdef RBIMPL_ATTR_MAYBE_UNUSED
+#define ENTER(n) RBIMPL_ATTR_MAYBE_UNUSED() volatile VALUE vStack[n];int iStack=0
+#else
#define ENTER(n) volatile VALUE RB_UNUSED_VAR(vStack[n]);int iStack=0
+#endif
#define PUSH(x) (vStack[iStack++] = (VALUE)(x))
#define SAVE(p) PUSH((p)->obj)
#define GUARD_OBJ(p,y) ((p)=(y), SAVE(p))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment