Updated klib layout example in LIBRARIES.md

This commit is contained in:
Alexander Gorshenev
2020-07-02 12:56:19 +03:00
committed by alexander-gorshenev
parent 5373f1c708
commit 463ae2a7e7
+16 -13
View File
@@ -223,19 +223,22 @@ directory structure, with the following layout:
```yaml ```yaml
- foo/ - foo/
- targets/ - $component_name/
- $platform/ - ir/
- kotlin/ - Seriaized Kotlin IR.
- Kotlin compiled to LLVM bitcode. - targets/
- native/ - $platform/
- Bitcode files of additional native objects. - kotlin/
- $another_platform/ - Kotlin compiled to LLVM bitcode.
- There can be several platform specific kotlin and native pairs. - native/
- linkdata/ - Bitcode files of additional native objects.
- A set of ProtoBuf files with serialized linkage metadata. - $another_platform/
- resources/ - There can be several platform specific kotlin and native pairs.
- General resources such as images. (Not used yet). - linkdata/
- manifest - A file in *java property* format describing the library. - A set of ProtoBuf files with serialized linkage metadata.
- resources/
- General resources such as images. (Not used yet).
- manifest - A file in *java property* format describing the library.
``` ```
An example layout can be found in `klib/stdlib` directory of your installation. An example layout can be found in `klib/stdlib` directory of your installation.