mirror of https://gitee.com/bigwinds/arangodb
35 lines
914 B
Bash
Executable File
35 lines
914 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BISON="$1"
|
|
OUTPUT="$2"
|
|
INPUT="$3"
|
|
|
|
if test "x$BISON" = x -o "x$OUTPUT" = x -o "x$INPUT" = x; then
|
|
echo "usage: $0 <bison> <output> <input>"
|
|
exit 1
|
|
fi
|
|
|
|
BISON_MAJOR_VER=`${BISON} --version |grep bison|sed -e "s;.* ;;" -e "s;\..*;;"`
|
|
|
|
if test "${BISON_MAJOR_VER}" -ge "3"; then
|
|
BISON_OPTS="--warnings=deprecated,other,error=conflicts-sr,error=conflicts-rr"
|
|
|
|
fi
|
|
|
|
#############################################################################
|
|
## bison
|
|
#############################################################################
|
|
|
|
${BISON} -d -ra ${BISON_OPTS} -o ${OUTPUT} ${INPUT}
|
|
|
|
#############################################################################
|
|
## sanity checks
|
|
#############################################################################
|
|
|
|
PREFIX=`echo ${OUTPUT} | sed -e 's:\.cpp$::'`
|
|
|
|
test -f ${PREFIX}.hpp || exit 1
|
|
test -f ${PREFIX}.cpp || exit 1
|
|
|
|
cp ${PREFIX}.hpp ${PREFIX}.h
|