From 74116e7aed1c6c50b66f593064f56def5f4362ea Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Thu, 23 Mar 2017 15:32:58 +0700 Subject: [PATCH] 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. --- run-debug/interop | 5 +++++ run-debug/konanc | 3 +++ 2 files changed, 8 insertions(+) create mode 100755 run-debug/interop create mode 100755 run-debug/konanc diff --git a/run-debug/interop b/run-debug/interop new file mode 100755 index 00000000000..9976a55fbf1 --- /dev/null +++ b/run-debug/interop @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +../dist/bin/interop -Dkonan.dependencies=../dependencies/all "$@" + + diff --git a/run-debug/konanc b/run-debug/konanc new file mode 100755 index 00000000000..069eaa9660f --- /dev/null +++ b/run-debug/konanc @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +../dist/bin/konanc -Dkonan.dependencies=../dependencies/all "$@" \ No newline at end of file