summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2023-08-03 18:17:37 +0200
committergit <svn-admin@ruby-lang.org>2023-08-05 17:30:35 +0000
commit11f10bb1ac4453ca1aab3f4055f7da9c6e950a56 (patch)
treee93f1df654576e5802a6e53e269f6708067ede54 /docs
parent70ef66f2408c43bbbcf7a4df6e9e69131161a9c0 (diff)
[ruby/yarp] Clarify shared library
https://github.com/ruby/yarp/commit/0b174b76f1 Co-authored-by: Mike Dalessio <mike.dalessio@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/build_system.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/build_system.md b/docs/build_system.md
index 255f9ddf38..2459cc7ce0 100644
--- a/docs/build_system.md
+++ b/docs/build_system.md
@@ -32,7 +32,7 @@ When installing the gem, `extconf.rb` is used and that:
* compiles the C extension with mkmf
When installing the gem on JRuby and TruffleRuby, no C extension is built, so instead of the last step,
-there is Ruby code using Fiddle which uses `librubyparser.so/dylib/dll`
+there is Ruby code using Fiddle which uses `librubyparser.{so,dylib,dll}`
to implement the same methods as the C extension, but using serialization instead of many native calls/accesses
(JRuby does not support C extensions, serialization is faster on TruffleRuby than the C extension).