Added build instructions of psych and fiddle with source files of libyaml and libffi

This commit is contained in:
Hiroshi SHIBATA 2022-11-18 17:51:33 +09:00
Родитель ca1aa7afea
Коммит a80b66e7eb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 16 добавлений и 1 удалений

17
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