added my Recipes
This commit is contained in:
23
meta-openembedded/meta-oe/recipes-extended/byacc/byacc.inc
Normal file
23
meta-openembedded/meta-oe/recipes-extended/byacc/byacc.inc
Normal file
@@ -0,0 +1,23 @@
|
||||
SUMMARY = "Berkeley LALR Yacc parser generator"
|
||||
HOMEPAGE = "http://invisible-island.net/byacc/"
|
||||
DESCRIPTION = "A parser generator utility that reads a grammar specification from a file and generates an LR(1) \
|
||||
parser for it. The parsers consist of a set of LALR(1) parsing tables and a driver routine written in the C \
|
||||
programming language."
|
||||
SECTION = "devel"
|
||||
LICENSE = "PD"
|
||||
|
||||
SRC_URI = "https://invisible-mirror.net/archives/byacc/byacc-${PV}.tgz \
|
||||
file://byacc-open.patch \
|
||||
file://0001-byacc-do-not-reorder-CC-and-CFLAGS.patch"
|
||||
|
||||
EXTRA_OECONF += "--program-transform-name='s,^,b,'"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
inherit autotools
|
||||
|
||||
do_configure() {
|
||||
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}
|
||||
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
|
||||
oe_runconf
|
||||
}
|
||||
@@ -0,0 +1,316 @@
|
||||
Subject: byacc: do not reorder $CC and $CFLAGS
|
||||
|
||||
byacc tries to process $CC and decide which part should belong to CC and which
|
||||
part should below to CFLAGS and then do reordering. It doesn't make much sense
|
||||
for OE. And it doesn't do its work correctly. Some options are dropped.
|
||||
|
||||
Delete all these stuff so that we could have all options we need.
|
||||
|
||||
Upstream-Status: Inappropriate [OE Specific]
|
||||
|
||||
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
|
||||
|
||||
Update for 20190617.
|
||||
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
|
||||
|
||||
Update for 20191103.
|
||||
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
|
||||
|
||||
Update for 20200910.
|
||||
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
|
||||
|
||||
Update for 20210808.
|
||||
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
|
||||
|
||||
Update for 20210201
|
||||
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
|
||||
---
|
||||
aclocal.m4 | 1 -
|
||||
configure | 259 -----------------------------------------------------
|
||||
2 files changed, 260 deletions(-)
|
||||
|
||||
diff --git a/aclocal.m4 b/aclocal.m4
|
||||
index 832d0c8..63b03f2 100644
|
||||
--- a/aclocal.m4
|
||||
+++ b/aclocal.m4
|
||||
@@ -1421,7 +1421,6 @@ CF_GCC_VERSION
|
||||
CF_ACVERSION_CHECK(2.52,
|
||||
[AC_PROG_CC_STDC],
|
||||
[CF_ANSI_CC_REQD])
|
||||
-CF_CC_ENV_FLAGS
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_PROG_GROFF version: 3 updated: 2018/01/07 13:16:19
|
||||
diff --git a/configure b/configure
|
||||
index cb47b4c..c72b6e4 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -2144,265 +2144,6 @@ esac
|
||||
# This should have been defined by AC_PROG_CC
|
||||
: "${CC:=cc}"
|
||||
|
||||
-echo "$as_me:2147: checking \$CFLAGS variable" >&5
|
||||
-echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6
|
||||
-case "x$CFLAGS" in
|
||||
-(*-[IUD]*)
|
||||
- echo "$as_me:2151: result: broken" >&5
|
||||
-echo "${ECHO_T}broken" >&6
|
||||
- { echo "$as_me:2153: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5
|
||||
-echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;}
|
||||
- cf_flags="$CFLAGS"
|
||||
- CFLAGS=
|
||||
- for cf_arg in $cf_flags
|
||||
- do
|
||||
-
|
||||
-cf_fix_cppflags=no
|
||||
-cf_new_cflags=
|
||||
-cf_new_cppflags=
|
||||
-cf_new_extra_cppflags=
|
||||
-
|
||||
-for cf_add_cflags in $cf_arg
|
||||
-do
|
||||
-case "$cf_fix_cppflags" in
|
||||
-(no)
|
||||
- case "$cf_add_cflags" in
|
||||
- (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C)
|
||||
- case "$cf_add_cflags" in
|
||||
- (-D*)
|
||||
- cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^-D[^=]*='\''\"[^"]*//'`
|
||||
-
|
||||
- test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
|
||||
- && test -z "${cf_tst_cflags}" \
|
||||
- && cf_fix_cppflags=yes
|
||||
-
|
||||
- if test "$cf_fix_cppflags" = yes ; then
|
||||
-
|
||||
- test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags "
|
||||
- cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- continue
|
||||
- elif test "${cf_tst_cflags}" = "\"'" ; then
|
||||
-
|
||||
- test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags "
|
||||
- cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- continue
|
||||
- fi
|
||||
- ;;
|
||||
- esac
|
||||
- case "$CPPFLAGS" in
|
||||
- (*$cf_add_cflags)
|
||||
- ;;
|
||||
- (*)
|
||||
- case "$cf_add_cflags" in
|
||||
- (-D*)
|
||||
- cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
|
||||
-
|
||||
-CPPFLAGS=`echo "$CPPFLAGS" | \
|
||||
- sed -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?[ ]/ /g' \
|
||||
- -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?$//g'`
|
||||
-
|
||||
- ;;
|
||||
- esac
|
||||
-
|
||||
- test -n "$cf_new_cppflags" && cf_new_cppflags="$cf_new_cppflags "
|
||||
- cf_new_cppflags="${cf_new_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- ;;
|
||||
- esac
|
||||
- ;;
|
||||
- (*)
|
||||
-
|
||||
- test -n "$cf_new_cflags" && cf_new_cflags="$cf_new_cflags "
|
||||
- cf_new_cflags="${cf_new_cflags}$cf_add_cflags"
|
||||
-
|
||||
- ;;
|
||||
- esac
|
||||
- ;;
|
||||
-(yes)
|
||||
-
|
||||
- test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags "
|
||||
- cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^[^"]*"'\''//'`
|
||||
-
|
||||
- test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
|
||||
- && test -z "${cf_tst_cflags}" \
|
||||
- && cf_fix_cppflags=no
|
||||
- ;;
|
||||
-esac
|
||||
-done
|
||||
-
|
||||
-if test -n "$cf_new_cflags" ; then
|
||||
-
|
||||
- test -n "$CFLAGS" && CFLAGS="$CFLAGS "
|
||||
- CFLAGS="${CFLAGS}$cf_new_cflags"
|
||||
-
|
||||
-fi
|
||||
-
|
||||
-if test -n "$cf_new_cppflags" ; then
|
||||
-
|
||||
- test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
|
||||
- CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
|
||||
-
|
||||
-fi
|
||||
-
|
||||
-if test -n "$cf_new_extra_cppflags" ; then
|
||||
-
|
||||
- test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
|
||||
- EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
|
||||
-
|
||||
-fi
|
||||
-
|
||||
- done
|
||||
- ;;
|
||||
-(*)
|
||||
- echo "$as_me:2261: result: ok" >&5
|
||||
-echo "${ECHO_T}ok" >&6
|
||||
- ;;
|
||||
-esac
|
||||
-
|
||||
-echo "$as_me:2266: checking \$CC variable" >&5
|
||||
-echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6
|
||||
-case "$CC" in
|
||||
-(*[\ \ ]-*)
|
||||
- echo "$as_me:2270: result: broken" >&5
|
||||
-echo "${ECHO_T}broken" >&6
|
||||
- { echo "$as_me:2272: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
|
||||
-echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;}
|
||||
- # humor him...
|
||||
- cf_prog=`echo "$CC" | sed -e 's/ / /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'`
|
||||
- cf_flags=`echo "$CC" | ${AWK:-awk} -v prog="$cf_prog" '{ printf("%s", substr($0,1+length(prog))); }'`
|
||||
- CC="$cf_prog"
|
||||
- for cf_arg in $cf_flags
|
||||
- do
|
||||
- case "x$cf_arg" in
|
||||
- (x-[IUDfgOW]*)
|
||||
-
|
||||
-cf_fix_cppflags=no
|
||||
-cf_new_cflags=
|
||||
-cf_new_cppflags=
|
||||
-cf_new_extra_cppflags=
|
||||
-
|
||||
-for cf_add_cflags in $cf_arg
|
||||
-do
|
||||
-case "$cf_fix_cppflags" in
|
||||
-(no)
|
||||
- case "$cf_add_cflags" in
|
||||
- (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C)
|
||||
- case "$cf_add_cflags" in
|
||||
- (-D*)
|
||||
- cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^-D[^=]*='\''\"[^"]*//'`
|
||||
-
|
||||
- test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
|
||||
- && test -z "${cf_tst_cflags}" \
|
||||
- && cf_fix_cppflags=yes
|
||||
-
|
||||
- if test "$cf_fix_cppflags" = yes ; then
|
||||
-
|
||||
- test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags "
|
||||
- cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- continue
|
||||
- elif test "${cf_tst_cflags}" = "\"'" ; then
|
||||
-
|
||||
- test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags "
|
||||
- cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- continue
|
||||
- fi
|
||||
- ;;
|
||||
- esac
|
||||
- case "$CPPFLAGS" in
|
||||
- (*$cf_add_cflags)
|
||||
- ;;
|
||||
- (*)
|
||||
- case "$cf_add_cflags" in
|
||||
- (-D*)
|
||||
- cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
|
||||
-
|
||||
-CPPFLAGS=`echo "$CPPFLAGS" | \
|
||||
- sed -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?[ ]/ /g' \
|
||||
- -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?$//g'`
|
||||
-
|
||||
- ;;
|
||||
- esac
|
||||
-
|
||||
- test -n "$cf_new_cppflags" && cf_new_cppflags="$cf_new_cppflags "
|
||||
- cf_new_cppflags="${cf_new_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- ;;
|
||||
- esac
|
||||
- ;;
|
||||
- (*)
|
||||
-
|
||||
- test -n "$cf_new_cflags" && cf_new_cflags="$cf_new_cflags "
|
||||
- cf_new_cflags="${cf_new_cflags}$cf_add_cflags"
|
||||
-
|
||||
- ;;
|
||||
- esac
|
||||
- ;;
|
||||
-(yes)
|
||||
-
|
||||
- test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags "
|
||||
- cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags"
|
||||
-
|
||||
- cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^[^"]*"'\''//'`
|
||||
-
|
||||
- test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
|
||||
- && test -z "${cf_tst_cflags}" \
|
||||
- && cf_fix_cppflags=no
|
||||
- ;;
|
||||
-esac
|
||||
-done
|
||||
-
|
||||
-if test -n "$cf_new_cflags" ; then
|
||||
-
|
||||
- test -n "$CFLAGS" && CFLAGS="$CFLAGS "
|
||||
- CFLAGS="${CFLAGS}$cf_new_cflags"
|
||||
-
|
||||
-fi
|
||||
-
|
||||
-if test -n "$cf_new_cppflags" ; then
|
||||
-
|
||||
- test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
|
||||
- CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
|
||||
-
|
||||
-fi
|
||||
-
|
||||
-if test -n "$cf_new_extra_cppflags" ; then
|
||||
-
|
||||
- test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
|
||||
- EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
|
||||
-
|
||||
-fi
|
||||
-
|
||||
- ;;
|
||||
- (*)
|
||||
- CC="$CC $cf_arg"
|
||||
- ;;
|
||||
- esac
|
||||
- done
|
||||
- test -n "$verbose" && echo " resulting CC: '$CC'" 1>&6
|
||||
-
|
||||
-echo "${as_me:-configure}:2389: testing resulting CC: '$CC' ..." 1>&5
|
||||
-
|
||||
- test -n "$verbose" && echo " resulting CFLAGS: '$CFLAGS'" 1>&6
|
||||
-
|
||||
-echo "${as_me:-configure}:2393: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5
|
||||
-
|
||||
- test -n "$verbose" && echo " resulting CPPFLAGS: '$CPPFLAGS'" 1>&6
|
||||
-
|
||||
-echo "${as_me:-configure}:2397: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5
|
||||
-
|
||||
- ;;
|
||||
-(*)
|
||||
- echo "$as_me:2401: result: ok" >&5
|
||||
-echo "${ECHO_T}ok" >&6
|
||||
- ;;
|
||||
-esac
|
||||
-
|
||||
echo "$as_me:2406: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
||||
echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
|
||||
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
Ubuntu defaults to passing _FORTIFY_SOURCE=2 which breaks byacc as it doesn't
|
||||
pass enough arguments to open():
|
||||
|
||||
inlined from 'open_tmpfile' at byacc-20150711/main.c:588:5:
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h:50:24: error: call to '__open_missing_mode' declared with attribute error:
|
||||
open with O_CREAT in second argument needs 3 arguments
|
||||
|
||||
Add a mode of 0666 to fix this.
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||
|
||||
diff --git a/main.c b/main.c
|
||||
index 620ce3f..82071a4 100644
|
||||
--- a/main.c
|
||||
+++ b/main.c
|
||||
@@ -526,7 +526,7 @@ my_mkstemp(char *temp)
|
||||
}
|
||||
if ((name = tempnam(dname, fname)) != 0)
|
||||
{
|
||||
- fd = open(name, O_CREAT | O_EXCL | O_RDWR);
|
||||
+ fd = open(name, O_CREAT | O_EXCL | O_RDWR, 0666);
|
||||
strcpy(temp, name);
|
||||
}
|
||||
else
|
||||
@@ -0,0 +1,10 @@
|
||||
# Sigh. This is one of those places where everyone licenses it differently. Someone
|
||||
# even apply UCB to it (Free/Net/OpenBSD). The maintainer states that:
|
||||
# "I've found no reliable source which states that byacc must bear a UCB copyright."
|
||||
# Setting to PD as this is what the upstream has it as.
|
||||
|
||||
LICENSE = "PD"
|
||||
LIC_FILES_CHKSUM = "file://package/debian/copyright;md5=b56b7454f5f865de2e6e35ee2185b461"
|
||||
require byacc.inc
|
||||
|
||||
SRC_URI[sha256sum] = "36b972a6d4ae97584dd186925fbbc397d26cb20632a76c2f52ac7653cd081b58"
|
||||
Reference in New Issue
Block a user