Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/buildall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,12 @@ ParseGlibcVer()
glibcver=2.9 # max GLIBC version to support
dirname=./${BUILDDIR}/release/lib
echo
echo python ./test/parseglibc.py -d ${dirname} -v ${glibcver}
python ./test/parseglibc.py -d ${dirname} -v ${glibcver}
PYTHON=python
if [ -z "$(which ${PYTHON} 2> /dev/null )" ]; then
PYTHON=python3
fi
echo ${PYTHON} ./test/parseglibc.py -d ${dirname} -v ${glibcver}
${PYTHON} ./test/parseglibc.py -d ${dirname} -v ${glibcver}
if [ $? != 0 ]; then
let TotalErrors+=1
echo Error: ParseGlibcVer failed: maximum supported GLIBC version is ${glibcver}.
Expand Down