From 84d3d1e39916e6df0d68ec3604eaf07ce72da4ab Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Thu, 13 Sep 2018 12:58:19 +0300 Subject: [PATCH] [cmd] launcher for lldb with loading python bindings. --- cmd/konan-lldb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cmd/konan-lldb diff --git a/cmd/konan-lldb b/cmd/konan-lldb new file mode 100644 index 00000000000..ac42c603a28 --- /dev/null +++ b/cmd/konan-lldb @@ -0,0 +1,18 @@ +#!/usr/bin/env bash +# +# Copyright 2010-2018 JetBrains s.r.o. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +DISTDIR=$(dirname $0)/.. +lldb -o "command script import $DISTDIR/tools/konan_lldb.py" $* \ No newline at end of file