Hello.
I have struggled for some days to compile a specific package using a pre
built toolchain. The toolchain was built by Narcissus.
I have tried to follow the directions of the section 5 in OE manual
adapting it to my needs.
The script I am using to set the environment up is:
#------- script start --------#
# ------------ From angstrom SDK script
export SDK_PATH=/usr/local/angstrom/arm
export TARGET_SYS=arm-angstrom-linux-gnueabi
export PATH=$SDK_PATH/bin:$PATH
export CPATH=$SDK_PATH/$TARGET_SYS/usr/include:$CPATH
export LIBTOOL_SYSROOT_PATH=$SDK_PATH/$TARGET_SYS
export PKG_CONFIG_SYSROOT_DIR=$SDK_PATH/$TARGET_SYS
export PKG_CONFIG_PATH=$SDK_PATH/$TARGET_SYS${libdir}/pkgconfig
export CONFIG_SITE=$SDK_PATH/site-config
alias opkg="LD_LIBRARY_PATH=$SDK_PATH/lib $SDK_PATH/bin/opkg-cl -f
$SDK_PATH/${sysconfdir}/opkg-sdk.conf -o $SDK_PATH"
alias opkg-target="LD_LIBRARY_PATH=$SDK_PATH/lib $SDK_PATH/bin/opkg-cl
-o $SDK_PATH/$TARGET_SYS"
# ------------ Cross tools
export CC="${CCACHE}${TARGET_SYS}-gcc ${HOST_CC_ARCH}"
export CXX="${CCACHE}TARGET_SYS}-g++ ${HOST_CC_ARCH}"
export CPP="TARGET_SYS}-gcc -E"
export LD="TARGET_SYS}-ld"
export AR="TARGET_SYS}-ar"
export AS="TARGET_SYS}-as"
export RANLIB="TARGET_SYS}-ranlib"
export STRIP="TARGET_SYS}-strip"
export OEBASE=$PWD
export PATH=$OEBASE/bitbake/bin:$PATH
export BBPATH=$OEBASE/build:$OEBASE/openembedded
export BB_ENV_EXTRAWHITE="OETREE OEBASE"
cd $OEBASE/build
# ------- script end --------- #
local.conf is as follows:
BBFILES = "${OEBASE}/openembedded/recipes/*/*.bb"
DISTRO = "angstrom-2008.1"
MACHINE = "cm-t35"
PRE_BUILT = "/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr"
TARGET_CPPFLAGS_append = " -I${PRE_BUILT}/include "
TARGET_LDFLAGS_prepend = " -L${PRE_BUILT}/qt2/lib -L${PRE_BUILT}/lib \
-Wl,-rpath-link,${PRE_BUILT}/lib -Wl,-rpath-link,${PRE_BUILT}/qt2/lib "
ASSUME_PROVIDED += " virtual/${TARGET_PREFIX}gcc "
ASSUME_PROVIDED += " virtual/libc "
# -------------------
Bitbake downloaded and installed in the OE tree:
el...@yosemite:~/OE/build$ bitbake --version
BitBake Build Tool Core version 1.8.18, bitbake version 1.8.18
I then try to compile a simple package with bitbake:
el...@yosemite:~/OE/build$ bitbake -D -b
/home/elder/OE/openembedded/recipes/bc/bc_1.06.bb
I have an error during the build, specifically when autoconf tools run
(log attached.) By the log it is using the cross tools environment
variables (CC etc) but instead of using the SDK directories to read
whatever files autoconf tools needs it is trying to use the directory
where I would have OE/angstrom built, had I chosen to built it from
scratch. Due to machine limitations building OE/angstrom is not an
option. Also because I would like to set an environment others could use.
What am I doing wrong?
Thank you very much for your help.
Elder.
+ export localstatedir=/var
+ localstatedir=/var
+ export GNOME_KEYRING_PID=5543
+ GNOME_KEYRING_PID=5543
+ export prefix=/usr
+ prefix=/usr
+ export 'CPP=arm-angstrom-linux-gnueabi-gcc -E'
+ CPP='arm-angstrom-linux-gnueabi-gcc -E'
+ export OEBASE=/home/elder/OE
+ OEBASE=/home/elder/OE
+ export mandir=/usr/share/man
+ mandir=/usr/share/man
+ export STRIP=arm-angstrom-linux-gnueabi-strip
+ STRIP=arm-angstrom-linux-gnueabi-strip
+ export
STAGING_SIPDIR=/home/elder/OE/build/tmp/sysroots/i686-linux/usr/share/sip
+ STAGING_SIPDIR=/home/elder/OE/build/tmp/sysroots/i686-linux/usr/share/sip
+ export
'BUILD_CXXFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-O2 -g -fpermissive'
+
BUILD_CXXFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-O2 -g -fpermissive'
+ export OBJCOPY=arm-angstrom-linux-gnueabi-objcopy
+ OBJCOPY=arm-angstrom-linux-gnueabi-objcopy
+ export AR=arm-angstrom-linux-gnueabi-ar
+ AR=arm-angstrom-linux-gnueabi-ar
+ export 'F77=arm-angstrom-linux-gnueabi-g77 -march=armv7-a -mtune=cortex-a8
-mfpu=neon -mfloat-abi=softfp'
+ F77='arm-angstrom-linux-gnueabi-g77 -march=armv7-a -mtune=cortex-a8
-mfpu=neon -mfloat-abi=softfp'
+ export USER=elder
+ USER=elder
+ export SESSION_MANAGER=local/Yosemite:/tmp/.ICE-unix/5544
+ SESSION_MANAGER=local/Yosemite:/tmp/.ICE-unix/5544
+ export PSTAGING_ACTIVE=1
+ PSTAGING_ACTIVE=1
+ export
XDG_DATA_DIRS=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share
+
XDG_DATA_DIRS=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share
+ export GTK_RC_FILES=/etc/gtk/gtkrc:/home/elder/.gtkrc-1.2-gnome2
+ GTK_RC_FILES=/etc/gtk/gtkrc:/home/elder/.gtkrc-1.2-gnome2
+ export libexecdir=/usr/libexec
+ libexecdir=/usr/libexec
+ export
QTDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/qt2
+ QTDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/qt2
+ export datadir=/usr/share
+ datadir=/usr/share
+ export USERNAME=elder
+ USERNAME=elder
+ export RANLIB=arm-angstrom-linux-gnueabi-ranlib
+ RANLIB=arm-angstrom-linux-gnueabi-ranlib
+ export BUILD_CXX=g++
+ BUILD_CXX=g++
+ export 'SDK_LDFLAGS=-L/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib -Wl,-O1'
+ SDK_LDFLAGS='-L/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib -Wl,-O1'
+ export LD=arm-angstrom-linux-gnueabi-ld
+ LD=arm-angstrom-linux-gnueabi-ld
+ export
'LDFLAGS=-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-O1 -Wl,--hash-style=gnu'
+ LDFLAGS='-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-O1 -Wl,--hash-style=gnu'
+ export COLORTERM=gnome-terminal
+ COLORTERM=gnome-terminal
+ export
'TARGET_CXXFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3
-fpermissive'
+
TARGET_CXXFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3
-fpermissive'
+ export MAKE=make
+ MAKE=make
+ export includedir=/usr/include
+ includedir=/usr/include
+ export
'TARGET_CPPFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include'
+
TARGET_CPPFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include'
+ export OPIEDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi
+ OPIEDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi
+ export BUILD_CC=gcc
+ BUILD_CC=gcc
+ export 'BUILD_LDFLAGS=-L/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib
-Wl,-rpath,/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib -Wl,-O1'
+ BUILD_LDFLAGS='-L/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib
-Wl,-rpath,/home/elder/OE/build/tmp/sysroots/i686-linux/usr/lib -Wl,-O1'
+ export 'CONFIG_SITE=/home/elder/OE/openembedded/site/endian-little
/home/elder/OE/openembedded/site/common-linux
/home/elder/OE/openembedded/site/common-glibc
/home/elder/OE/openembedded/site/arm-common
/home/elder/OE/openembedded/site/arm-linux
/home/elder/OE/openembedded/site/common /home/elder/OE/openembedded/site/common'
+ CONFIG_SITE='/home/elder/OE/openembedded/site/endian-little
/home/elder/OE/openembedded/site/common-linux
/home/elder/OE/openembedded/site/common-glibc
/home/elder/OE/openembedded/site/arm-common
/home/elder/OE/openembedded/site/arm-linux
/home/elder/OE/openembedded/site/common /home/elder/OE/openembedded/site/common'
+ unset TARGET_ARCH
+ export
'CXXFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3
-fpermissive -fvisibility-inlines-hidden'
+
CXXFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3
-fpermissive -fvisibility-inlines-hidden'
+ export DESKTOP_SESSION=default
+ DESKTOP_SESSION=default
+ export BUILD_F77=g77
+ BUILD_F77=g77
+ export
STAGING_IDLDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/idl
+
STAGING_IDLDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/idl
+ export bindir=/usr/bin
+ bindir=/usr/bin
+ export BUILD_LD=ld
+ BUILD_LD=ld
+ export 'BB_ENV_EXTRAWHITE=OETREE OEBASE'
+ BB_ENV_EXTRAWHITE='OETREE OEBASE'
+ export exec_prefix=/usr
+ exec_prefix=/usr
+ export LANG=pt_BR.UTF-8
+ LANG=pt_BR.UTF-8
+ export HOME=/home/elder
+ HOME=/home/elder
+ export oldincludedir=/usr/include
+ oldincludedir=/usr/include
+ export 'CCLD=arm-angstrom-linux-gnueabi-gcc -march=armv7-a -mtune=cortex-a8
-mfpu=neon -mfloat-abi=softfp'
+ CCLD='arm-angstrom-linux-gnueabi-gcc -march=armv7-a -mtune=cortex-a8
-mfpu=neon -mfloat-abi=softfp'
+ export
'SDK_CFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3'
+ SDK_CFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3'
+ export 'SHELLCMDS=bash --rcfile '
+ SHELLCMDS='bash --rcfile '
+ export QPEDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi
+ QPEDIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi
+ export BBPATH=/home/elder/OE/build:/home/elder/OE/openembedded
+ BBPATH=/home/elder/OE/build:/home/elder/OE/openembedded
+ export LOGNAME=elder
+ LOGNAME=elder
+ export
PATH=/home/elder/OE/build/tmp/sysroots/i686-linux/usr/bin/armv7a-angstrom-linux-gnueabi:/home/elder/OE/build/tmp/sysroots/i686-linux/usr/bin/armv7a-angstrom-linux-gnueabi:/home/elder/OE/build/tmp/sysroots/i686-linux/usr/sbin:/home/elder/OE/build/tmp/sysroots/i686-linux/usr/bin:/home/elder/OE/build/tmp/cross/armv7a//bin:/home/elder/OE/build/tmp/sysroots/i686-linux/sbin:/home/elder/OE/build/tmp/sysroots/i686-linux/bin:/home/elder/OE/bitbake/bin:/usr/local/angstrom/arm/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
+
PATH=/home/elder/OE/build/tmp/sysroots/i686-linux/usr/bin/armv7a-angstrom-linux-gnueabi:/home/elder/OE/build/tmp/sysroots/i686-linux/usr/bin/armv7a-angstrom-linux-gnueabi:/home/elder/OE/build/tmp/sysroots/i686-linux/usr/sbin:/home/elder/OE/build/tmp/sysroots/i686-linux/usr/bin:/home/elder/OE/build/tmp/cross/armv7a//bin:/home/elder/OE/build/tmp/sysroots/i686-linux/sbin:/home/elder/OE/build/tmp/sysroots/i686-linux/bin:/home/elder/OE/bitbake/bin:/usr/local/angstrom/arm/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
+ export
'TARGET_CFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3'
+
TARGET_CFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3'
+ export base_bindir=/bin
+ base_bindir=/bin
+ export PWD=/home/elder/OE/build
+ PWD=/home/elder/OE/build
+ export servicedir=/srv
+ servicedir=/srv
+ export BUILD_CPP=cpp
+ BUILD_CPP=cpp
+ unset MACHINE
+ export
'SDK_CXXFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3
-fpermissive'
+
SDK_CXXFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3
-fpermissive'
+ export sbindir=/usr/sbin
+ sbindir=/usr/sbin
+ export
'CFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3'
+
CFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3'
+ export BUILD_AR=ar
+ BUILD_AR=ar
+ export sharedstatedir=/com
+ sharedstatedir=/com
+ export
DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-2O0a7nRsAB,guid=db8c72186dffa815029104034c0e21de
+
DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-2O0a7nRsAB,guid=db8c72186dffa815029104034c0e21de
+ export GPG_AGENT_INFO=/tmp/seahorse-B7qK5H/S.gpg-agent:5604:1
+ GPG_AGENT_INFO=/tmp/seahorse-B7qK5H/S.gpg-agent:5604:1
+ export OBJDUMP=arm-angstrom-linux-gnueabi-objdump
+ OBJDUMP=arm-angstrom-linux-gnueabi-objdump
+ export
'BUILD_CFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-O2 -g'
+
BUILD_CFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-O2 -g'
+ export
'CPPFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include'
+
CPPFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include
-I/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/include'
+ export base_libdir=/lib
+ base_libdir=/lib
+ export XAUTHORITY=/home/elder/.Xauthority
+ XAUTHORITY=/home/elder/.Xauthority
+ unset DISTRO
+ export
QMAKE_MKSPEC_PATH=/home/elder/OE/build/tmp/sysroots/i686-linux/usr/share/qmake
+ QMAKE_MKSPEC_PATH=/home/elder/OE/build/tmp/sysroots/i686-linux/usr/share/qmake
+ export
PKG_CONFIG_DIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig
+
PKG_CONFIG_DIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig
+ export docdir=/usr/share/doc
+ docdir=/usr/share/doc
+ export palmtopdir=/usr/lib/opie
+ palmtopdir=/usr/lib/opie
+ export infodir=/usr/share/info
+ infodir=/usr/share/info
+ export libdir=/usr/lib
+ libdir=/usr/lib
+ export 'CC=arm-angstrom-linux-gnueabi-gcc -march=armv7-a -mtune=cortex-a8
-mfpu=neon -mfloat-abi=softfp'
+ CC='arm-angstrom-linux-gnueabi-gcc -march=armv7-a -mtune=cortex-a8 -mfpu=neon
-mfloat-abi=softfp'
+ export
'TARGET_LDFLAGS=-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-O1 -Wl,--hash-style=gnu'
+
TARGET_LDFLAGS='-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/usr/qt2/lib
-L/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-rpath-link,/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib
-Wl,-O1 -Wl,--hash-style=gnu'
+ export TERM=xterm
+ TERM=xterm
+ export GNOME_KEYRING_SOCKET=/tmp/keyring-SkCSND/socket
+ GNOME_KEYRING_SOCKET=/tmp/keyring-SkCSND/socket
+ export SHELL=/bin/bash
+ SHELL=/bin/bash
+ export BUILD_CCLD=gcc
+ BUILD_CCLD=gcc
+ export palmqtdir=/usr/lib/opie
+ palmqtdir=/usr/lib/opie
+ export base_sbindir=/sbin
+ base_sbindir=/sbin
+ export 'CXX=arm-angstrom-linux-gnueabi-g++ -march=armv7-a -mtune=cortex-a8
-mfpu=neon -mfloat-abi=softfp'
+ CXX='arm-angstrom-linux-gnueabi-g++ -march=armv7-a -mtune=cortex-a8
-mfpu=neon -mfloat-abi=softfp'
+ export PKG_CONFIG_DISABLE_UNINSTALLED=yes
+ PKG_CONFIG_DISABLE_UNINSTALLED=yes
+ export
PKG_CONFIG_SYSROOT_DIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi
+
PKG_CONFIG_SYSROOT_DIR=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi
+ export SSH_AUTH_SOCK=/tmp/keyring-SkCSND/ssh
+ SSH_AUTH_SOCK=/tmp/keyring-SkCSND/ssh
+ export
PKG_CONFIG_PATH=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig:/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/pkgconfig
+
PKG_CONFIG_PATH=/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig:/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/pkgconfig
+ export _=/home/elder/OE/bitbake/bin/bitbake
+ _=/home/elder/OE/bitbake/bin/bitbake
+ export
BUILD_CPPFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
+
BUILD_CPPFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
+ export PATCH_GET=0
+ PATCH_GET=0
+ export DISPLAY=:0.0
+ DISPLAY=:0.0
+ export NM=arm-angstrom-linux-gnueabi-nm
+ NM=arm-angstrom-linux-gnueabi-nm
+ export MANIFEST=/home/elder/OE/openembedded/recipes/bc/./manifest
+ MANIFEST=/home/elder/OE/openembedded/recipes/bc/./manifest
+ export
'SDK_CPPFLAGS=-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include'
+
SDK_CPPFLAGS='-isystem/home/elder/OE/build/tmp/sysroots/i686-linux/usr/include
-isystem/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/include'
+ export BUILD_STRIP=strip
+ BUILD_STRIP=strip
+ export
XDG_SESSION_COOKIE=4f33520cbfa43eafb53ff56348689926-1275994587.555035-1213517267
+
XDG_SESSION_COOKIE=4f33520cbfa43eafb53ff56348689926-1275994587.555035-1213517267
+ export AS=arm-angstrom-linux-gnueabi-as
+ AS=arm-angstrom-linux-gnueabi-as
+ export BUILD_RANLIB=ranlib
+ BUILD_RANLIB=ranlib
+ export sysconfdir=/etc
+ sysconfdir=/etc
+ cd
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06
+ do_configure
+ autotools_do_configure
+ case bc in
++ find
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06
-name configure.in -o -name configure.ac
+ for ac in '`find
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06
-name configure.in -o -name configure.ac`'
++ dirname
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06/configure.in
+ rm -f
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06/configure
+ '[' -e
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06/configure.in
-o -e
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06/configure.ac
']'
++ pwd
+
olddir=/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06
+ cd
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06
+ '[' xdefault = xdefault ']'
+ acpaths=
++ find
/home/elder/OE/build/tmp/work/armv7a-angstrom-linux-gnueabi/bc-1.06-r0/bc-1.06
-maxdepth 2 -name '*.m4'
++ grep -v aclocal.m4
++ grep -v acinclude.m4
++ sed -e 's,\(.*/\).*$,\1,'
++ sort -u
++ automake --version
++ head -n 1
++ sed 's/.* //;s/\.[0-9]\+$//'
+ AUTOV=1.10
+ automake --version
automake (GNU automake) 1.10.1
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Tom Tromey <[email protected]>
and Alexandre Duret-Lutz <[email protected]>.
+ echo 'AUTOV is 1.10'
AUTOV is 1.10
+ install -d
/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal
+ install -d
/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.10
+ acpaths='
-I/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.10
-I
/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal'
+ echo --exclude=autopoint
+ grep -q aclocal
+ rm -f aclocal.m4
+ '[' -e configure.in ']'
+ CONFIGURE_AC=configure.in
+ grep '^[[:space:]]*AM_GLIB_GNU_GETTEXT' configure.in
+ grep '^[[:space:]]*AM_GNU_GETTEXT' configure.in
+ mkdir -p m4
+ oenote Executing autoreconf --verbose --install --force --exclude=autopoint
-I/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.10
-I
/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal
+ echo NOTE: 'Executing autoreconf --verbose --install --force
--exclude=autopoint
-I/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.10
-I
/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal'
NOTE: Executing autoreconf --verbose --install --force --exclude=autopoint
-I/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.10
-I
/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal
+ autoreconf -Wcross --verbose --install --force --exclude=autopoint
-I/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.10
-I
/home/elder/OE/build/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal
/usr/bin/autoreconf: unrecognized option `--exclude=autopoint'
Try `/usr/bin/autoreconf --help' for more information.
+ oefatal 'autoreconf execution failed.'
+ echo FATAL: 'autoreconf execution failed.'
FATAL: autoreconf execution failed.
+ exit 1
_______________________________________________
Angstrom-distro-users mailing list
[email protected]
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-users