summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-11-18 17:51:33 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-11-18 17:51:37 +0900
commita80b66e7ebf1179964b416cee6fd236048a73dcf (patch)
treea4b4230064fd3925cfb935d414f2624cfd77b927 /NEWS.md
parentca1aa7afeae43b02d00cf2f2a82acde293e48875 (diff)
Added build instructions of psych and fiddle with source files of libyaml and libffi
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md17
1 files changed, 16 insertions, 1 deletions
diff --git a/NEWS.md b/NEWS.md
index b5a5909169..bff9d1e7ab 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -307,7 +307,22 @@ The following deprecated methods are removed.
* `Psych` no longer bundles libyaml sources.
And also `Fiddle` no longer bundles libffi sources.
Users need to install the libyaml/libffi library themselves via the package
- system. [[Feature #18571]]
+ manager like apt, yum, brew, etc.
+
+ Psych and fiddle supported the static build with specific version of libyaml
+ and libffi sources. You can build psych with libyaml-0.2.5 like this.
+
+ ```bash
+ $ ./configure --with-libyaml-source-dir=/path/to/libyaml-0.2.5
+ ```
+
+ And you can build fiddle with libffi-3.4.4 like this.
+
+ ```bash
+ $ ./configure --with-libffi-source-dir=/path/to/libffi-3.4.4
+ ```
+
+ [[Feature #18571]]
## C API updates