blob: 4d46d6fd7957db769c81ac4985d080245ef83c77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
require ../bash/bash.inc
PR = "r1"
RCONFLICTS = "bash"
RREPLACES = "bash"
SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \
file://001-005.patch;patch=1 \
file://006-add_internal_libcpwd_functions.patch;patch=1"
S = "${WORKDIR}/bash-${PV}"
EXTRA_OECONF += "--enable-static-link --without-bash-malloc"
#HOST_SYS = "${BUILD_SYS}"
#CONFIG_SITE = ""
do_configure () {
export CPP="gcc -E"
export CC=gcc
export AS=as
export LD=ld
export CXX=g++
export AR=ar
export OBJCOPY=objcopy
export OBJDUMP=objdump
export RANLIB=ranlib
export NM=nm
export STRIP=strip
export CFLAGS="-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os"
export CXXFLAGS="-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os -fpermissive -fvisibility-inlines-hidden"
oe_runconf
}
|