From 7b33e5f6e2a0d0e0e5b6af872bb127503c3a3b6f Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 6 Mar 2020 10:43:58 +0000 Subject: [PATCH] Fix regen-mncc-py.sh script to work on Debian8 (jessie) As python-ctypeslib is long unmaintained, it is not packaged for anything more recent than Debian 8 (jessie). Let's print that at start and check for availability of the reqquired executable programs (part of python-ctypeslib). Change-Id: Ied6333016e2eb357bda08499742f1ed8c56ba762 --- regen-mncc-py.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/regen-mncc-py.sh b/regen-mncc-py.sh index 30bdd34..f1c85db 100755 --- a/regen-mncc-py.sh +++ b/regen-mncc-py.sh @@ -1,5 +1,16 @@ #/bin/sh -echo on Debian, codegen/cparser.py must call gccxml.real instead of gccxml! +echo This script requires that python-ctypeslib is installed on the system +echo Unfortunately, this package is long unmaintained and only available on Debian8 +echo + +if [ ! -x `which h2xml` ]; then + echo No h2xml executable found - python-ctypeslib not installed? +fi + +if [ ! -x `which xml2py` ]; then + echo No xml2py executable found - python-ctypeslib not installed? +fi + cp ./mncc.h /tmp/mncc.h -h2xml.py ./mncc.h -c -o mncc.xml -xml2py.py mncc.xml -k dest -v -o mncc.py +h2xml ./mncc.h -c -o mncc.xml +xml2py mncc.xml -k dest -v -o mncc.py