From 659a2c6d54570e2602f58aa525c61ca1c6b3d413 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 5 Oct 2019 22:27:02 +0000 Subject: gdb{_host}: --with-python: work around gdb's anti-cross-compilation patterns. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucio Andrés Illanes Albornoz --- sigh/python2.7-config | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 sigh/python2.7-config (limited to 'sigh/python2.7-config') diff --git a/sigh/python2.7-config b/sigh/python2.7-config new file mode 100755 index 00000000..5888c816 --- /dev/null +++ b/sigh/python2.7-config @@ -0,0 +1,23 @@ +#!/bin/sh + +set -eu + +for arg ; do + case "$arg" in + --version) + printf 'Python 2.7.15' + ;; + + --includes) + ;; + + --ldflags) + printf '%s' '-lpython2.7' + ;; + + --exec-prefix) + ;; + esac +done + +exit 0 -- cgit v1.2.3