Khem and Christophe,

Thanks for the help so far.  Making that change made config go much, much 
further.  I'm now getting an error stating:

| configure: error: C compiler cannot create executables
| See `config.log' for more details.

Grabbing the applicable section of config.log, I see this info:

/media/sda3/stuff/tmp/sysroots/i686-linux/usr/armv5te/lib/gcc/arm-angstrom-linux-gnueabi/4.5.3/../../../../arm-angstrom-linux-gnueabi/bin/ld:
 crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status
configure:3167: $? = 1
configure:3205: result: no

I took a look in the directory listed in the path above, and sure enough 
there's no file (or softlink) named ld in that directory.  Bitbaking the base 
image works, so I can't imagine that I'm missing anything.  Is there another 
definition I missed somewhere?

Thanks,
Bryan



-----Original Message-----
From: angstrom-distro-devel-boun...@linuxtogo.org 
[mailto:angstrom-distro-devel-boun...@linuxtogo.org] On Behalf Of Khem Raj
Sent: Monday, April 02, 2012 9:47 AM
To: Discussion of the angstrom distribution development
Subject: Re: [Angstrom-devel] Problems using autotools for new recipe

On Mon, Apr 2, 2012 at 6:16 AM, Bryan Evenson <beven...@melinkcorp.com> wrote:
> My Bitbake recipe is pretty minimal:
>
> DESCRIPTION = "App Name"
> AUTHOR = "Author"
> PR = "r1"
> SRC_URI = "file:///path/to/tarball/${PN}-${PV}.tar.gz"
> DEPENDS = "virtual/kernel"
>
> S = "${WORKDIR}"
>
> inherit autotools
>
> do_install () {
>  install -d ${D}${bindir}/
>  install -m 0755 ${S}/${TARGET} ${D}${bindir}/
> }
>
> FILES_${PN} = "${bindir}/${TARGET}"
>
> It looks like autotools is expecting to find 
> /media/sda3/stuff/tmp/work/armv5te-angstrom-linux-gnueabi/ih3-main-app-0.0.1-r1/configure.ac,
>  but I don't have one at that level; all of my working files are one level 
> deeper at 
> /media/sda3/stuff/tmp/work/armv5te-angstrom-linux-gnueabi/ih3-main-app-0.0.1-r1/ih3-main-app-0.0.1/.
>   I can't figure out how to tell autotools where configure.ac really lives.  
> Any ideas?

${S} is not pointing to where it should change it to

S = ${WORKDIR}/ih3-main-app-${PV} and see if that helps

_______________________________________________
Angstrom-distro-devel mailing list
Angstrom-distro-devel@linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-devel
_______________________________________________
Angstrom-distro-devel mailing list
Angstrom-distro-devel@linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-devel

Reply via email to