Re: Bootstrapping Kotlin from scratch

2023-01-18 Thread Emmanuel Bourg
Le 2021-04-19 16:33, Emmanuel Bourg a écrit : I'm still making progress and I'm now at the version 0.8.409. I've started a GitHub project detailing the full build procedure from Kotlin 0.6.786 to 0.8.409: https://github.com/ebourg/kotlin-bootstrapping Follow up on the Kotlin

Re: Bootstrapping Kotlin from scratch

2021-04-19 Thread Emmanuel Bourg
Le 06/04/2021 à 09:40, Emmanuel Bourg a écrit : > There are missing symbols when building the first 0.7.x tag, I'm still > working on it. I'm still making progress and I'm now at the version 0.8.409. I've started a GitHub project detailing the full build procedure from Kotlin 0.6.786 to

Re: Bootstrapping Kotlin from scratch

2021-04-06 Thread Emmanuel Bourg
Le 02/04/2021 à 22:56, Emmanuel Bourg a écrit : > Step 5: how to build Kotlin 0.6.2350 ??? I have the next steps, the decompiler code was refactored in the SDK in the commit f6c6bec7361fba61ecb3aa955e4145a789d4ed97, and this wasn't used until Kotlin 0.6.2443. Kotlin 0.6.2350 builds with Kotlin

Re: Bootstrapping Kotlin from scratch

2021-04-02 Thread Thorsten Glaser
On Fri, 2 Apr 2021, Emmanuel Bourg wrote: > Instead of starting with a relatively recent release of Kotlin and a > binary bootstrap compiler and standard library that are subsequently > rebuilt, I tried to start further back in time with a release that > doesn't depend on Kotlin and then build up

Bootstrapping Kotlin from scratch

2021-04-02 Thread Emmanuel Bourg
Hi all, I've attempted a different approach for bootstrapping Kotlin and I'd like to share with you the result. For the reminder, Kotlin is extremely difficult to build from sources because it is written itself in Kotlin and its build system is based on Gradle which also depends on Kotlin, that's