How can i bootstrap compilation of the stdlib to u...
# kontributors
r
How can i bootstrap compilation of the stdlib to use kotlinc out of dist/ to get this to work?
d
1. First, you need to assemble snapshot compiler and publish it in local maven repository:
./gradlew dist install publish
2. Then, you can just call
./gradlew dist -Pbootstrap.local
r
Ah, thank you!