Add scripts for running with already downloaded dependecies

This patch adds 2 scipts in run-debug directory which execute
dist/bin/konanc and dist/bin/interop with
'-Dkonan.dependencies=dependencies/all' additional argument.

It allows us to run compiler and stub generator avoiding first run
dependecy download.
This commit is contained in:
Ilya Matveev
2017-03-23 15:32:58 +07:00
committed by ilmat192
parent 8df9b535f2
commit 74116e7aed
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
../dist/bin/interop -Dkonan.dependencies=../dependencies/all "$@"
+3
View File
@@ -0,0 +1,3 @@
#!/usr/bin/env bash
../dist/bin/konanc -Dkonan.dependencies=../dependencies/all "$@"