From 463ae2a7e774a18c9608c45d71fd3712c163e619 Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Thu, 2 Jul 2020 12:56:19 +0300 Subject: [PATCH] Updated klib layout example in LIBRARIES.md --- LIBRARIES.md | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/LIBRARIES.md b/LIBRARIES.md index 68ca0b42dc0..72d9c005776 100644 --- a/LIBRARIES.md +++ b/LIBRARIES.md @@ -223,19 +223,22 @@ directory structure, with the following layout: ```yaml - foo/ - - targets/ - - $platform/ - - kotlin/ - - Kotlin compiled to LLVM bitcode. - - native/ - - Bitcode files of additional native objects. - - $another_platform/ - - There can be several platform specific kotlin and native pairs. - - linkdata/ - - 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. + - $component_name/ + - ir/ + - Seriaized Kotlin IR. + - targets/ + - $platform/ + - kotlin/ + - Kotlin compiled to LLVM bitcode. + - native/ + - Bitcode files of additional native objects. + - $another_platform/ + - There can be several platform specific kotlin and native pairs. + - linkdata/ + - 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.