From 8f3aa9a07ce6585b30f9d392bf0b05af842efadb Mon Sep 17 00:00:00 2001 From: Igor Chevdar Date: Mon, 11 Dec 2017 17:00:02 +0300 Subject: [PATCH] =?UTF-8?q?Turned=20on=20passing=20=E2=80=9C-X=E2=80=9D=20?= =?UTF-8?q?arguments=20to=20compiler?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/run_konan | 4 ---- cmd/run_konan.bat | 4 ---- 2 files changed, 8 deletions(-) diff --git a/cmd/run_konan b/cmd/run_konan index a46b1cd0a19..e2965caf26c 100755 --- a/cmd/run_konan +++ b/cmd/run_konan @@ -38,10 +38,6 @@ while [ $# -gt 0 ]; do java_args=("${java_args[@]}" "${1:2}") shift ;; - -X*) - echo "TODO: need to pass arguments to all the tools somehow." - shift - ;; --time) konan_args=("${konan_args[@]}" --time) java_args=("${java_args[@]}" -agentlib:hprof=cpu=samples -Dkonan.profile=true) diff --git a/cmd/run_konan.bat b/cmd/run_konan.bat index 81ce6d54242..f73429a1f6b 100644 --- a/cmd/run_konan.bat +++ b/cmd/run_konan.bat @@ -38,10 +38,6 @@ if not "!ARG!" == "" ( set "JAVA_ARGS=%JAVA_ARGS% !ARG:~2!" goto next ) - if "!ARG:~0,2!" == "-X" ( - echo "TODO: need to pass arguments to all the tools somehow." - goto next - ) if "!ARG!" == "--time" ( set "KONAN_ARGS=%KONAN_ARGS% --time" set "JAVA_ARGS=%JAVA_ARGS% -agentlib:hprof=cpu=samples -Dkonan.profile=true"