summaryrefslogtreecommitdiff
path: root/yjit
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-04-08 12:47:27 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-04-08 12:47:27 +0900
commit08324ab9eb97535b5994450186c5048be3c0cd62 (patch)
treecb0cee4fdf1c024e0e611e70baa9289a16caab70 /yjit
parenta9bfb64153ae0a07d498d0976d335b65515fd1b1 (diff)
downloadruby-08324ab9eb97535b5994450186c5048be3c0cd62.tar.gz
Include `--no-llvm-bc` option in `NM` macro only if usable
Diffstat (limited to 'yjit')
-rw-r--r--yjit/yjit.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/yjit.mk b/yjit/yjit.mk
index 2f34c0079b..80ca124699 100644
--- a/yjit/yjit.mk
+++ b/yjit/yjit.mk
@@ -65,7 +65,7 @@ endif
# we rely.
ifneq ($(findstring darwin,$(target_os)),)
$(YJIT_LIB_SYMBOLS): $(YJIT_LIBS)
- $(Q) $(tooldir)/darwin-ar $(NM) --no-llvm-bc --defined-only --extern-only $(YJIT_LIBS) | \
+ $(Q) $(tooldir)/darwin-ar $(NM) --defined-only --extern-only $(YJIT_LIBS) | \
sed -n -e 's/.* //' -e '/^$(SYMBOL_PREFIX)rb_/p' \
-e '/^$(SYMBOL_PREFIX)rust_eh_personality/p' \
> $@